forked from spacetelescope/jwql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (68 loc) · 1.35 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
[project]
name = "jwql"
description = "The James Webb Space Telescope Quicklook Project"
readme = "README.md"
authors = [
{ name = "Matthew Bourque" },
{ name = "Lauren Chambers" },
{ name = "Misty Cracraft" },
{ name = "Mike Engesser" },
{ name = "Mees Fix" },
{ name = "Joe Filippazzo" },
{ name = "Bryan Hilbert" },
]
keywords = ["astronomy", "python"]
classifiers = ["Programming Language :: Python"]
dependencies = [
"asdf",
"astropy",
"astroquery",
"bokeh<3",
"crds",
"cryptography",
"django",
"inflection",
"jinja2",
"jsonschema",
"jwst",
"jwst_reffiles",
"matplotlib",
"nodejs",
"numpy",
"numpydoc",
"pandas",
"psycopg2-binary",
"pysiaf",
"pyvo",
"scipy",
"sqlalchemy",
"stdatamodels",
"wtforms",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"stsci_rtd_theme",
]
[project.license]
file = "LICENSE"
content-type = "text/plain"
[build-system]
requires = ["setuptools>=61.2,<=65.5.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"
[tool.pytest.ini_options]
norecursedirs = ["jwql/website/apps/jwql/static"]