forked from spacetelescope/hstaxe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
63 lines (57 loc) · 1.45 KB
/
setup.cfg
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
[metadata]
name = hstaxe
description = Spectral extraction tools for Hubble Space Telescope Grisms
long_description_content_type = text/markdown
author = hstaxe and aXe developers
author_email = [email protected]
license = GPLv3
license_files = LICENSE.txt
url = https://github.com/spacetelescope/hstaxe
github_project = spacetelescope/hstaxe
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: C
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Astronomy
Topic :: Software Development :: Libraries :: Python Modules
[options]
python_requires >=3.7
zip_safe = False
setup_requires =
setuptools_scm
install_requires =
numpy<1.24
astropy
stwcs
stsci.imagestats
drizzlepac
drizzle
[options.extras_require]
test =
backports.tempfile
pytest
requests_mock
pytest-catchlog
docs =
sphinx
sphinx-automodapi
sphinx-rtd-theme
stsci-rtd-theme
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
[upload_docs]
upload_dir = docs/_build/html
show_response = 1
[tool:pytest]
minversion = 2.2
norecursedirs = build docs/_build
pep8ignore = E501 W391
[flake8]
exclude = cextern
select = E101 W191 W291 W292 W293 W391 E11 E502 E722 E901 E902