-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
44 lines (38 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jwst_reffiles"
description = 'A tool to create CRDS-formatted reference files for JWST from a set of input dark current files and a set of flat field files.'
readme = 'README.md'
requires-python = '>=3.8'
version = "1.0.1" # Static version
authors = [
{ name = "STScI (Rest, Hilbert, Canipe, et al.)", email = "arest@stsci.edu" },
]
license = { text = "BSD-3-Clause" }
dependencies = [
'astropy>=4.0',
'jwst',
'numpy>=1.16',
'matplotlib>=1.4.3',
'scipy>=1.1',
]
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.scripts]
mkrefs = "jwst_reffiles.mkrefs:main"
[project.optional-dependencies]
docs = ["nbsphinx", "ipykernel", "sphinx", "sphinx_rtd_theme"]
test = ["pytest"]
[tool.setuptools]
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.package-data]
jwst_reffiles = ["bad_pixel_mask/*.txt"]