-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.53 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
66
67
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "numpy==2.1.3"
]
[project]
name = "conan-exoplanet"
version = "3.3.8"
authors = [
{name = "Babatunde Akinsanmi", email = "tunde.akinsanmi@unige.ch"},
{name = "Monika Lendl", email = "monika.lendl@unige.ch"}
]
maintainers = [
{name = "Babatunde Akinsanmi", email = "tunde.akinsanmi@unige.ch"}
]
description = "COde for exoplaNet ANalysis"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"chainconsumer==1.1.2",
"scipy",
"pandas",
"lmfit",
"dynesty",
"astropy",
"astroquery",
"celerite",
"corner",
"lightkurve",
"dill",
"dace_query",
"matplotlib",
"emcee",
"george",
"ldtk ==1.7.0",
"tqdm",
"spleaf",
"numba"
]
[project.urls]
Homepage = "https://github.com/titans-ge/CONAN"
Repository = "https://github.com/titans-ge/CONAN"
Documentation = "https://conan-exoplanet.readthedocs.io/en/latest/"
Changelog = "https://github.com/titans-ge/CONAN/blob/main/change_log.rst"
Issues = "https://github.com/titans-ge/CONAN/issues"
#optional dpendency for tests
[project.optional-dependencies]
test = ["pytest","batman-package","radvel","h5py"]
#pytests
[tool.pytest.ini_options]
addopts = ["-v", "-p", "no:warnings"]