forked from spacetelescope/rocky-worlds-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
66 lines (57 loc) · 1.24 KB
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
[project]
name = "rocky_worlds_utils"
description = "Utility Tools for the Rocky Worlds DDT Project"
readme = "README.md"
authors = [
{ name = "Mees Fix" },
{ name = "Kyle Conroy" },
{ name = "Leonardo Dos Santos" },
]
keywords = ["astronomy", "python"]
classifiers = ["Programming Language :: Python"]
requires-python = ">=3.11"
dependencies = [
"astropy>=7.0.1",
"astroquery>=0.4.10",
"bokeh>=3.8.0",
"calcos>=3.6.1",
"costools>=1.2.6",
"crds>=12.1.10",
"html5lib>=1.1",
"jinja2>=3.1.6",
"jwst-gtvt>=1.1.1",
"matplotlib>=3.10.3",
"netcdf4>=1.7.2",
"numpy>=2.2.4",
"pandas>=2.3.3",
"Pillow>=11.3.0",
"scipy>=1.15.2",
"stistools>=1.4.5",
"xarray>=2025.9.0",
]
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"
[build-system]
requires = ["setuptools >= 61.2",
"setuptools_scm[toml]>=7.1"]
build-backend = 'setuptools.build_meta'
[project.scripts]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
[tool.pytest]
junit_family = "xunit2"