-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.43 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "numpy==2.1.3"
]
# build-backend = 'mesonpy'
# requires = [
# 'meson-python',
# 'meson >= 1.5.0',
# ]
[project]
name = "CONAN"
version = "3.3.3"
authors = [
{name = "Monika Lendl", email = "[email protected]"},
{name = "Babatunde Akinsanmi", email = "[email protected]"}
]
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",
"Programming Language :: Python :: 3.12",
"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/mlendl42/CONAN"
Documentation = "https://CONAN.readthedocs.io/en/latest/"
Changelog = "https://github.com/tundeakins/CONAN/blob/main/change_log.rst"
Issues = "https://github.com/tundeakins/CONAN/issues"
#optional dpendency for tests
[project.optional-dependencies]
test = ["pytest","batman-package","radvel"]