-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (43 loc) · 1.09 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
[project]
name = "starspotter"
version = "0.0.1"
description = "Stellar contamination estimates from rotational light curves"
authors = [{ name = "Lionel Garcia" }, { name = "Benjamin Rackham" }]
license = "MIT"
readme = "readme.md"
requires-python = ">=3.9"
packages = [{ include = "spotter" }]
dependencies = ["numpy", "healpy", "jax", "jaxlib", "equinox", "tinygp"]
[project.optional-dependencies]
dev = ["black", "pytest", "nox"]
test = ["pytest", "pytest-xdist"]
comparison = [
"jaxoplanet@git+https://github.com/exoplanet-dev/jaxoplanet#feat-starry-out-of-experimental",
]
compare_starry = [
"starry",
"exoplanet-core",
"numpy<1.22",
"xarray<2023.10.0",
"tqdm",
]
docs = [
"matplotlib",
"sphinx",
"docutils",
"jupyterlab",
"myst-parser",
"sphinx-book-theme",
"myst-nb",
"sphinx-copybutton",
"toml",
"ipywidgets",
"sphinx-autoapi<3.2.0",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["spotter"]
[tool.hatch.metadata]
allow-direct-references = true