-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
executable file
·125 lines (108 loc) · 3.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[project]
name = "skfp"
dynamic = ["version"] # version is read with poetry-version-plugin on GitHub release from Git tag
description = "Library for effective molecular fingerprints calculation"
authors = [
{ name = "Scikit-Fingerprints Development Team", email = "scikitfingerprints@gmail.com" }
]
repository = "https://github.com/scikit-fingerprints/scikit-fingerprints"
documentation = "https://scikit-fingerprints.github.io/scikit-fingerprints/"
keywords = ["molecular fingerprints", "molecular descriptors", "cheminformatics"]
license = "MIT"
packages = [
{ include = "skfp" }
]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
requires-python = ">=3.9,<3.13"
dependencies = [
"datasketch>=1.0.0",
"descriptastorus>=2.0.0",
"e3fp>=1.0.0",
"huggingface_hub>=0.0.0",
"joblib>=1.0.0",
"mordredcommunity>=2.0.0",
"numba>=0.48.0,<1",
"numpy>=1.20.0,<2",
"pandas<3",
"rdkit<=2024.3.3",
"scikit-learn>=1.0.0",
"scipy>=1.0.0",
"tqdm>=4.0.0",
]
[project.urls]
"Bug Tracker" = "https://github.com/scikit-fingerprints/scikit-fingerprints/issues"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
flake8 = "*"
isort = "*"
jupyter = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
setuptools = "*" # to avoid PyCharm errors
xenon = "*"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
black = "*"
isort = "*"
mypy = "*"
pip-audit = "*"
pre-commit = "*"
pytest = "*"
xenon = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
ipython = "*"
nbsphinx = "*"
pydata-sphinx-theme = "*"
sphinx = "*"
sphinx-copybutton = "*"
[tool.poetry.group.eval]
optional = true
[tool.poetry.group.eval.dependencies]
lightgbm = "*"
matplotlib = "*"
ogb = "*"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry]
version = "0.0.0"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
latest-tag = true
tag-branch = "remotes/origin/master"
style = "semver"
strict = true
[tool.pytest.ini_options]
python_files = "*.py"
[tool.black]
include = "benchmarking/.*\\.py|skfp/.*\\.py|tests/.*\\.py"
[tool.isort]
profile = "black"
skip_glob = ".poetry/**"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"