-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
100 lines (92 loc) · 1.75 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "exoctk"
description = "Exoplanet Characterization Toolkit"
readme = "README.md"
authors = [
{ name= "Matthew Bourque" },
{ name="Néstor Espinoza" },
{ name="Joseph Filippazzo"},
{ name="Mees Fix" },
{ name="Teagan King" },
{ name="Catherine Martlin" },
{ name="Jennifer Medina" },
{ name="Natasha Batalha" },
{ name="Michael Fox" },
{ name="Jules Fowler" },
{ name="Jonathan Fraine" },
{ name="Matthew Hill" },
{ name="Nikole Lewis" },
{ name="Kevin Stevenson" },
{ name="Jeff Valenti" },
{ name="Hannah Wakeford" },
]
keywords = ["astronomy", "python"]
classifiers = ["Programming Language :: Python"]
dependencies = [
'asteval',
'astropy',
'astroquery',
'bandit',
'batman-package',
'bibtexparser',
'bokeh>=3.0,<=3.2.1',
'boto3',
'corner',
'cython',
'docopt',
'docutils',
'flake8',
'flask',
'flask_wtf',
'gunicorn',
'h5py',
'hotsoss',
'ipython',
'matplotlib',
'numpy<2.0',
'numpydoc',
'pandas',
'paramiko',
'platon',
'pysiaf',
'pysynphot',
'pytest',
'pyyaml',
'pyvo',
'regions',
'scipy',
'scp',
'sphinx',
'sphinx_astropy',
'sqlalchemy',
'svo_filters',
'wtforms',
'werkzeug',
'jwst_gtvt',
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"stsci_rtd_theme",
]
[project.license]
file = "LICENSE"
content-type = "text/plain"
[project.urls]
Repository = "https://github.com/ExoCTK/exoctk"
[build-system]
requires = ["setuptools>=68.0.0", "numpy", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
[tool.pytest]
junit_family = "xunit2"