-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
71 lines (62 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
[build-system]
# Minimum requirements for the build system to execute
requires = [
"cython>=0.28,<3.0",
"setuptools>=61.2",
"versioningit",
"wheel",
# below matches MDA
"numpy>=2.0.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pytng"
description = "Minimal Cython wrapper of the TNG trajectory library"
readme = "README.rst"
authors = [{name = "Max Linke, Richard J Gowers, Hugo MacDermott-Opeskin", email = "[email protected]"}]
maintainers = [{name = "MDAnalysis Core Developers", email = "[email protected]"}]
license = {file = "LICENSE.txt"}
classifiers = [
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: C',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
]
urls = {Homepage = "http://mdanalysis.org/pytng"}
requires-python = ">= 3.9"
dependencies = [
"numpy>1.22.3",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
docs = [
"mdanalysis-sphinx-theme>=1.0.1",
"sphinx-sitemap",
]
[tool.versioningit]
default-version = "1+unknown"
[tool.versioningit.format]
distance = "{base_version}+{distance}.{vcs}{rev}"
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
[tool.versioningit.vcs]
method = "git"
match = ["*"]
default-tag = "0.0.0"