forked from spacetelescope/jwst_mast_query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (61 loc) · 1.59 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
# pyproject.toml
[build-system]
requires = [
"setuptools >= 61.2",
"setuptools_scm[toml]>=3.4.3",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "jwst_mast_query"
description = "Query MAST for data products from the James Webb Space Telescope, and download them"
authors = [
{ name = "Armin Rest", email = "[email protected]" },
{ name = "Bryan Hilbert", email = "[email protected]" },
{ name = "Association of Universities for Research in Astronomy", email = "[email protected]" },
]
dynamic = [
"version",
]
readme = "README.rst"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.21.6",
"scipy>=1.5.0",
"matplotlib>=3.2.0",
"astropy>=5.1.0",
"photutils>=1.10.0",
"poppy>=1.0.0",
"pysiaf>=0.19.1",
"synphot>=1.0.0",
"astroquery>=0.4.6",
]
keywords = ['astronomy']
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.license]
file = "LICENSE.txt"
[project.optional-dependencies]
test = [
'pytest'
]
docs= [
'nbsphinx',
'sphinx',
'sphinx-automodapi',
'sphinx-rtd-theme',
'stsci-rtd-theme',
'extension-helpers',
]
[project.urls]
github_project='https://github.com/spacetelescope/jwst_mast_query'
[project.scripts]
'jwst_download.py' = 'jwst_mast_query.scripts.jwst_download:main'
[tool.setuptools_scm]
version_file = "jwst_mast_query/version.py"