-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.34 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "refold"
version = "1.0.0"
description = "Restorative Engine for Folding Optimization via Ligand Design"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "REFOLD Team" }]
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"scipy>=1.10",
"biopython>=1.81",
"gemmi>=0.6",
"requests>=2.31",
"loguru>=0.7",
"tqdm>=4.65",
"pyyaml>=6.0",
"click>=8.1",
"pyarrow>=12.0",
"lxml>=4.9",
"rdkit>=2023.3",
"networkx>=3.1",
]
[project.optional-dependencies]
ml = [
"torch>=2.1",
"torch-geometric>=2.4",
"transformers>=4.35",
"fair-esm>=2.0",
"accelerate>=0.24",
]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"black>=23.9",
"isort>=5.12",
"flake8>=6.1",
"mypy>=1.6",
]
[project.scripts]
refold-single = "refold.pipeline.single_mutation:main"
refold-scan = "refold.pipeline.batch_clinvar:main"
refold-proteome = "refold.pipeline.proteome_scan:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py310", "py311"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true