-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.cfg
61 lines (55 loc) · 1.26 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
[metadata]
name = glue-astronomy
provides = glue_astronomy
author = Thomas Robitaille
author_email = [email protected]
license = BSD 3-Clause License
license_file = LICENSE
url = https://github.com/glue-viz/glue-astronomy
description = Astronomy-specific plugins for glue
long_description = file: README.rst
long_description_content_type = text/x-rst
[options]
zip_safe = False
packages = find:
python_requires = >=3.8
setup_requires =
setuptools_scm
install_requires =
astropy>=4.0
glue-core>=1.6.1
regions>=0.4
specutils>=0.7
specreduce>=1.0.0
spectral-cube>=0.6.0
[options.extras_require]
docs =
sphinx
sphinx-automodapi
sphinxcontrib-spelling
numpydoc
sphinx-rtd-theme
test =
pytest
pytest-astropy
pytest-cov
mock
qt =
PyQt5
[options.entry_points]
glue.plugins =
glue_astronomy = glue_astronomy:setup
spectral_cube = glue_astronomy.io.spectral_cube:setup
[options.package_data]
glue_astronomy.io.spectral_cube.tests = data/*, data/*/*, data/*/*/*
[tool:pytest]
minversion = 6
testpaths = docs glue_astronomy
doctest_plus = enabled
xfail_strict = true
filterwarnings =
error
ignore:numpy\.ndarray size changed:RuntimeWarning
ignore:`product` is deprecated
[flake8]
max-line-length = 100