-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (72 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = true
name = 'symdesign'
version = '24.0.0'
description = 'A tool to design proteins, both symmetric and asymmetric'
readme = 'docs/README.md'
authors = ['Kyle Meador <k.meador14@gmail.com>']
license = 'LICENSE.md'
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Laguage :: Python',
'Programming Laguage :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
keywords = ['protein', 'design', 'docking', 'symmetry', 'interface design', 'interface analysis']
repository = 'https://github.com/kylemeador/symdesign'
homepage = 'https://kylemeador.github.io/symdesign/'
documentation = 'https://kylemeador.github.io/symdesign/guide'
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "*"
pandas = "*"
scikit-learn = "*"
scipy = "*"
numba = "*"
sqlalchemy = "^1.4"
alembic = "*"
psutil = "*"
requests = "*"
biopython = "<= 1.81"
freesasa = "*"
pdbecif = "*"
tqdm = "*"
proglog = "*"
flametree = "*"
lxml = "*"
# Notebook packages
matplotlib = "*"
jupyterlab = "*"
ipykernel = "*"
ipywidgets = "*"
nglview = "*"
# ML
proteinmpnn = { git = "https://github.com/kylemeador/proteinmpnn.git" }
alphafold = { git = "https://github.com/deepmind/alphafold.git" } # subdirectory = "alphafold",
tensorflow = "^2.0.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "*"
syrupy = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "*"
mypy = "*"
memory_profiler = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocstrings-python = "*"
mkdocs-material = "*"
mkdocs-gen-files = "*"
mkdocs-literate-nav = "*"
mkdocs-section-index = "*"
[tool.poetry.scripts]
symdesign = 'symdesign.__main__:main'