-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
74 lines (71 loc) · 1.85 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pharmaconet"
version = "2.1.2"
description = "PharmacoNet: Open-Source Software for Protein-based Pharmacophore Modeling and Virtual Screening"
authors = [{ name = "Seonghwan Seo", email = "[email protected]" }]
license = { text = "MIT" }
requires-python = ">=3.10,<3.13"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"torch>=1.13.0,<2.6.0",
"numpy<=1.26.4",
"numba>=0.59",
"omegaconf>=2.3.0",
"molvoxel>=0.1.3",
"gdown>=5.1.0",
"ruff>=0.8.4",
"tqdm",
# chem&bioinfo
"openbabel-wheel==3.1.1.20",
"biopython>=1.83",
]
[project.optional-dependencies]
appl = [
"torch>=2.3.1",
"torch-geometric>=2.4.0",
"torch-scatter>=2.1.2",
"torch-sparse>=0.6.18",
"torch-cluster>=1.6.3",
]
dev = [
"torch>=2.3.1",
"torch-geometric>=2.4.0",
"torch-scatter>=2.1.2",
"torch-sparse>=0.6.18",
"torch-cluster>=1.6.3",
"wandb",
"tensorboard",
]
[project.urls]
Repository = "https://github.com/SeonghwanSeo/PharmacoNet"
# CODING
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "B", "UP", "T203",]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
"F401", # imported but unused
"E402", # Module level import not at top of file
]
[tool.basedpyright]
pythonVersion = "3.10"
typeCheckingMode = "standard"
include = ["src/"]