-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (62 loc) · 1.81 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
[project]
name = "cosmic-popsynth"
distname = "cosmic"
description = "a Python-interfaced binary population synthesis suite"
authors = [
{ name="Katelyn Breivik", email="katie.breivik@gmail.com" },
{ name="Scott Coughlin" },
{ name="Michael Zevin" },
{ name="Carl L. Rodriguez" },
{ name="Tom Wagg" },
]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
license = { text = "MIT License" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dependencies = [
"numpy >= 2.0, < 2.3", # if you change numpy versions, also change it in (1) the build-system section below and (2) the .github/workflows/build_wheels_and_publish.yml file
"scipy >= 1.14.1, <1.16",
"pandas >= 2.2.3, < 3.1",
"astropy >= 6.1, < 9.0",
"matplotlib >= 3.9, < 4.0",
"tables >= 3.10.1, < 4.0",
"h5py >= 3.12.0, < 4.0",
"schwimmbad >= 0.3.1",
"tqdm >= 4.0",
"configparser",
]
[project.optional-dependencies]
doc = [
"sphinx >= 1.6.1",
"numpydoc >= 0.8.0",
"sphinx-bootstrap-theme >= 0.6",
"sphinxcontrib-programoutput",
"sphinx-automodapi",
"ipython",
"sphinx_rtd_theme",
"furo",
"sphinx-design",
"sphinx-copybutton",
"sphinx-gallery",
]
test = [
"pytest",
"pytest-cov",
"coverage",
"importlib-metadata < 5.0",
"wheel",
]
all = ["cosmic-popsynth[doc, test]"]
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python>=0.15', 'meson>=1.3', 'numpy >= 2.0, < 2.3', 'ninja']
[tool.cibuildwheel.macos]
repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"