-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (63 loc) · 1.93 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 = "openpharmaco"
version = "1.0.0" # replace this with the actual version if known
description = "OpenPharmaco: Open-Source Software for Protein-based Pharmacophore Modeling and Virtual Screening"
license = { text = "MIT" }
authors = [{ name = "Seonghwan Seo", email = "shwan0106@kaist.ac.kr" }]
requires-python = ">=3.10"
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"
]
dependencies = [
"torch==1.13.1",
"numpy>=1.26",
"numba>=0.59",
"omegaconf>=2.3.0",
"molvoxel==0.1.3",
"gdown>=5.1.0",
"biopython>=1.83"
]
[project.urls]
Website = "https://github.com/SeonghwanSeo/OpenPharmaco"
"Source Code" = "https://github.com/SeonghwanSeo/OpenPharmaco"
Documentation = "https://github.com/SeonghwanSeo/OpenPharmaco.wiki"
[project.scripts]
_openpharmaco = "openph_gui.cmd:main"
openph = "openph_gui.cmd:run"
openpharmaco = "openph_gui.cmd:run"
[tool.setuptools.packages.find]
where = ["modules"]
[tool.setuptools.package-data]
"openph_gui" = ["images/*"]
# CODING
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "B", "UP", "T203",]
ignore = ["E501"]
[tool.ruff.per-file-ignores]
"__init__.py" = [
"F401", # imported but unused
"E402", # Module level import not at top of file
]
[tool.pyright]
pythonVersion = "3.10"
typeCheckingMode = "standard"
diagnosticMode = "openFilesOnly"
reportImplicitStringConcatenation = false
reportGeneralTypeIssues = "warning"
reportDeprecated = "warning"
reportUnusedVariable = false
reportUnusedImport = false