-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.41 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
[build-system]
requires = ["setuptools", "wheel", "numpy"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = 'scarvs'
authors = [
{name = 'Neil Cook', email = 'neil.james.cook@gmail.com'},
]
description = 'Statistical tools for Combined Analysis of Radial Velocity Signals'
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = 'LICENSE'}
requires-python = ">=3.9"
dependencies = [
"arviz==0.20.0",
"astropy==5.3",
"batman-package==2.4.9",
"corner==2.2.2",
"dynesty==2.1.4",
"emcee==3.1.6",
"ipython==8.13.2",
"jax==0.4.35",
"jaxoplanet==0.0.2",
"kepmodel==1.0.6",
"lightkurve==2.5.0",
"matplotlib==3.7.1",
"notebook==7.2.2",
"numba==0.57.0",
"numexpr==2.8.4",
"numpy==1.24.3",
"numpyro==0.15.3",
"pandas==2.2.3",
"pandastable==0.13.1",
"radvel==1.4.11",
"ruamel.yaml==0.17.31",
"scipy==1.10.1",
"spleaf==2.1.11",
"starry==1.2.0",
"tinygp==0.3.0",
"tqdm==4.65.0",
"wget==3.2",
"xarray==2024.10.0"
]
[project.urls]
Homepage = 'http://apero.exoplanets.ca'
Repository = 'https://github.com/njcuk9999/scarvs'
[project.scripts]
scarvs_setup = "scarvs:recipes.scarvs_setup.run"
scarvs_run = "scarvs:recipes.scarvs_run.run"
[project.optional-dependencies]
full = ["aperocore @ git+https://github.com/njcuk9999/apero-drs.git@v0.8.003#subdirectory=apero-core"]
dev = ["aperocore"]