-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (47 loc) · 1.06 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
[project]
name = "compassdock"
version = "0.1.4"
description = "A comprehensive accurate assessment approach for deep learning based molecular docking"
readme = "README.md"
requires-python = ">=3.11,<3.12"
license = { file = "LICENSE" }
authors = [
{ name = "Ahmet Sarigun", email = "[email protected]" }
]
maintainers = [
{ name = "Ahmet Sarigun", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"torch==2.3.0",
"torchvision==0.18.0",
"torchaudio==2.3.0",
"PyYAML",
"scipy",
"networkx[default]",
"biopython",
"rdkit-pypi",
"e3nn",
"spyrmsd",
"pandas==2.0.0",
"biopandas",
"prody==2.4.1",
"torch_geometric==2.5.3",
"rdkit==2023.9.6",
"py3dmol==2.1.0",
"prolif==2.0.3",
"pybel==0.15.5",
"seaborn",
"omegaconf",
"ml_collections",
"dm-tree",
"modelcif==1.0",
"einops==0.8.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["compassdock*"]