-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.13 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
[project]
name="fepops"
version="1.8.3"
description="OpenFEPOPS; A Python implementation of the FEPOPS molecular similarity method"
authors = [
{name = "Yan-Kai Chen"},
{name = "Steven Shave"},
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["molecular similarity", "ligand based virtual screening"]
dependencies = [
"rdkit>=2022.9.2,<2023.9.1",
"numpy>=1.22.4",
"pandas>=1.5.0",
"scikit-learn>=1.3.0",
"scipy>=1.7.0",
"torch",
"fast-pytorch-kmeans>=0.1.9",
"fire>=0.5.0",
"tqdm>=4.48.0",
]
[build-system]
requires=[
"setuptools>=61.0.0",
]
build-backend="setuptools.build_meta"
[tool.black]
skip-string-normalization = true
include = '''
(
^/tests/
| ^/src/
| ^/setup[.]py
)
'''
exclude = '''
(
__pycache__
|.*\.egg-info
)
'''
[project.scripts]
fepops = "fepops.__main__:fepops_entrypoint"
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Homepage" = "https://github.com/JustinYKC/FEPOPS"
[project.optional-dependencies]
dev = [
'black==23.3.0',
'pytest==7.4.0',
'build==0.10.0',
]
[tool.pytest.ini_options]
"testpaths" = "tests/test*"