-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
46 lines (43 loc) · 901 Bytes
/
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
[project]
name = "nuance"
version = "0.8.1"
description = "Transit signals detection among correlated noises"
authors = [{ name = "Lionel Garcia" }]
license = "MIT"
readme = "README.md"
keywords = ["jax", "astronomy", "exoplanets", "transit"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"jax>=0.4.25",
"tinygp",
"jaxlib",
"jaxopt",
"numpy",
"matplotlib",
"scipy",
"multiprocess",
"tqdm",
]
[project.optional-dependencies]
dev = ["black", "isort", "pytest", "astropy"]
docs = [
"sphinx",
"docutils",
"jupyterlab",
"myst-parser",
"sphinx-book-theme",
"myst-nb",
"sphinx-copybutton",
"sphinx-design",
"toml",
"ipywidgets",
"wotan",
"astropy",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"