-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.67 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
[project]
authors = [
{name = "Durrant Lab @ Pitt", email = "durrantj@pitt.edu"}
]
maintainers = [
{name = "Alex M. Maldonado", email = "alex.maldonado@pitt.edu"}
]
description = "Adds hydrogen atoms to molecular representations as specified by pH"
name = "dimorphite_dl"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Chemistry",
]
# TODO: Keep this here until pixi releases building capabilities
dependencies = [
"loguru>=0.7.2,<0.8",
"rdkit>=2020.3.3,<2026",
]
[project.urls]
Documentation = "https://durrantlab.github.io/dimorphite_dl"
Repository = "https://github.com/durrantlab/dimorphite_dl"
Issues = "https://github.com/durrantlab/dimorphite_dl/issues"
Changelog = "https://github.com/durrantlab/dimorphite_dl/blob/main/CHANGELOG.md"
[project.scripts]
dimorphite_dl = "dimorphite_dl.cli:run_cli"
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8", "wheel"]
[tool.setuptools.packages.find]
where = ["."]
include = ["dimorphite_dl*"]
[tool.setuptools.package-data]
dimorphite_dl = ["smarts/*.smarts"]
[tool.setuptools_scm]
write_to = "dimorphite_dl/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "node-and-timestamp"