-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (82 loc) · 2.31 KB
/
pyproject.toml
File metadata and controls
91 lines (82 loc) · 2.31 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
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
[build-system]
requires = [
"setuptools >= 40.9.0",
"versioningit",
]
build-backend = "setuptools.build_meta"
[project]
name = "GridDataFormats"
description = "Reading and writing of data on regular grids in Python"
license = "LGPL-3.0-or-later"
license-files = ["COPYING", "COPYING.LESSER", "AUTHORS"]
authors = [
{name = "Oliver Beckstein", email = "orbeckst@gmail.com"},
]
maintainers = [
{name = "MDAnalysis", email = "mdanalysis@numfocus.org"},
]
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.11"
dependencies = [
"numpy>=1.21",
"scipy",
"mrcfile",
]
keywords = [
"science",
"array",
"density",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest",
"numpy",
]
[project.urls]
source = "https://github.com/MDAnalysis/GridDataFormats"
documentation = "https://www.mdanalysis.org/GridDataFormats/"
[tool.setuptools]
zip-safe = true
[tool.setuptools.packages.find]
namespaces = false
include = ["gridData", "gridData.tests", "gridData.tests.datafiles"]
exclude = ["devtools", "doc", "ci", "examples"]
[tool.setuptools.package-data]
gridData = [
"tests/datafiles/*.dx",
"tests/datafiles/*.dx.gz",
"tests/datafiles/*.ccp4",
"tests/datafiles/*.mrc",
"tests/datafiles/*.plt",
"tests/datafiles/*.bz2",
]
[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 = ["*"]
[tool.versioningit.format]
distance = "{base_version}+{distance}.{vcs}{rev}"
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"