-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
86 lines (77 loc) · 2.32 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
[build-system]
requires = [
"setuptools >= 61.2",
"versioningit",
]
build-backend = "setuptools.build_meta"
[project]
name = "propkatraj"
description = "Obtain pKas for titreatable residues from a simulation trajectory."
license = {file = "LICENSE" }
authors = [
{name = "David Dotson", email = "[email protected]"},
{name = "Oliver Beckstein", email = "[email protected]"},
{name = "propkatraj AUTHORS"},
]
maintainers = [
{name = "Oliver Beckstein", email = "[email protected]"},
{name = "Irfan Alibay", email = "[email protected]"},
]
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"MDAnalysis>=2.1.0",
"numpy",
"pandas",
"propka==3.1",
]
keywords = [
"molecular simulations",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-xdist>=2.5",
"pytest-cov>=3.0",
"MDAnalysisTests>=2.1.0",
]
[project.urls]
"documentation" = "https://becksteinlab.github.io/propkatraj/"
"Issue tracker" = "https://github.com/Becksteinlab/propkatraj/issues"
"MDAKit registry" = "https://mdakits.mdanalysis.org/propkatraj.html"
"source" = "https://github.com/Becksteinlab/propkatraj"
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false, exclude=["devtools"]}
[tool.versioningit]
default-version = "1+unknown"
[tool.versioningit.vcs]
method = "git"
# the below line expects tags to look like '1.0.2'.
# if prefixing with a v, e.g. 'v1.0.2', change it to ["v*"]
match = ["release-*"]
[tool.versioningit.tag2version]
rmprefix = "release-"
[tool.versioningit.format]
distance = "{base_version}+{distance}.{vcs}{rev}"
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"