-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
53 lines (47 loc) · 1.32 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "CodonTransformer"
version = "1.6.5"
description = "The ultimate tool for codon optimization, transforming protein sequences into optimized DNA sequences specific for your target organisms."
authors = ["Adibvafa Fallahpour <Adibvafa.fallahpour@mail.utoronto.ca>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/adibvafa/CodonTransformer"
repository = "https://github.com/adibvafa/CodonTransformer"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.9"
biopython = "^1.83"
ipywidgets = "^7.0.0"
numpy = "^1.26.4"
onnxruntime = "^1.17.3"
pandas = "^2.0.0"
python_codon_tables = "^0.1.12"
pytorch_lightning = "^2.2.1"
scikit-learn = "^1.2.2"
scipy = "^1.13.1"
setuptools = "^70.0.0"
torch = "^2.0.0"
tqdm = "^4.66.2"
transformers = "^4.40.0"
CAI-PyPI = "^2.0.1"
[tool.poetry.dev-dependencies]
coverage = "^7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"