-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
50 lines (43 loc) · 1.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
[project]
requires-python = ">=3.6"
name = "gsd"
version = "3.4.2"
description = "General simulation data file format."
readme = "README.md"
license = {text = "BSD-2-Clause"}
authors = [
{name = "Joshua A. Anderson", email = "[email protected]"},
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = ["numpy"]
[project.scripts]
gsd = "gsd.__main__:main"
[project.urls]
Homepage = "https://gsd.readthedocs.io"
Documentation = "https://gsd.readthedocs.io"
Download = "https://github.com/glotzerlab/gsd/releases/download/v3.4.2/gsd-3.4.2.tar.gz"
Source = "https://github.com/glotzerlab/gsd"
Issues = "https://github.com/glotzerlab/gsd/issues"
[tool.setuptools]
packages = ["gsd", "gsd.test"]
[build-system]
requires = ["setuptools>=64.0.0",
"wheel",
"Cython",
"numpy>=2.0.0rc1"]
[tool.cibuildwheel]
# Test the wheels.
test-command = "pytest --pyargs gsd -v --log-level=DEBUG"
# Build on 64-bit architectures.
archs = ["auto64"]
[tool.cibuildwheel.linux]
# dependencies do not build for musl
skip = ["pp* *musllinux*"]