-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
65 lines (57 loc) · 1.7 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
[project]
name = "exoplanet_core"
description = "The compiled backend for exoplanet"
authors = [{ name = "Dan Foreman-Mackey", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT License" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = ["numpy"]
[project.optional-dependencies]
pymc3 = ["pymc3>=3.9", "numpy<1.22"]
pymc = ["pymc>=5.0.0"]
jax = ["jax", "jaxlib"]
test = ["pytest"]
comparison = ["batman-package", "starry", "numpy<1.22", "xarray<2023.10.0"]
benchmark = [
"pytest",
"pytest-benchmark",
"radvel",
"kepler.py",
"batman-package",
"starry",
"exoplanet==0.4.5",
]
[project.urls]
"Homepage" = "https://docs.exoplanet.codes"
"Source" = "https://github.com/exoplanet-dev/exoplanet-core"
"Bug Tracker" = "https://github.com/exoplanet-dev/exoplanet-core/issues"
[build-system]
requires = ["scikit-build-core", "numpy", "pybind11"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
sdist.exclude = []
sdist.include = ["src/exoplanet_core/exoplanet_core_version.py"]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
[tool.setuptools_scm]
write_to = "src/exoplanet_core/exoplanet_core_version.py"
[tool.cibuildwheel]
skip = "pp* *-win32 *-musllinux_* *-manylinux_i686"
[tool.black]
line-length = 79
[tool.isort]
skip_glob = []
line_length = 79
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true