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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
[metadata]
name = specreduce
author = Astropy Specreduce contributors
author_email = astropy-dev@googlegroups.com
license = BSD 3-Clause
license_file = licenses/LICENSE.rst
url = http://astropy.org/
description = Astropy affiliated package for Spectroscopic Reductions
long_description = file: README.rst
long_description_content_type = text/x-rst
edit_on_github = False
github_project = astropy/specreduce
[options]
zip_safe = False
packages = find:
python_requires = >=3.8
setup_requires = setuptools_scm
install_requires =
astropy
specutils>=1.9.1
synphot
matplotlib
photutils
[options.entry_points]
[options.extras_require]
data =
specreduce_data
test =
pytest-astropy
docs =
sphinx-astropy
[options.package_data]
specreduce =
datasets/*
datasets/line_lists/*
datasets/line_lists/NIST/*
datasets/line_lists/iraf/*
datasets/line_lists/iraf/air/*
datasets/line_lists/iraf/vacuum/*
datasets/onedstds/*
datasets/onedstds/blackbody/*
datasets/onedstds/bstdscal/*
datasets/onedstds/ctio/*
datasets/onedstds/ctiocal/*
datasets/onedstds/ctionewcal/*
datasets/onedstds/iidscal/*
datasets/onedstds/irscal/*
datasets/onedstds/oke1990/*
datasets/onedstds/redcal/*
datasets/onedstds/spec16cal/*
datasets/onedstds/spec50cal/*
datasets/onedstds/spechayescal/*
datasets/onedstds/snfactory/*
datasets/onedstds/gemini/*
datasets/onedstds/eso/*
datasets/onedstds/eso/Xshooter/*
datasets/onedstds/eso/ctiostan/*
datasets/onedstds/eso/hststan/*
datasets/onedstds/eso/okestan/*
datasets/onedstds/eso/wdstan/*
[tool:pytest]
testpaths = "specreduce" "docs"
astropy_header = true
doctest_plus = enabled
text_file_format = rst
addopts = --doctest-rst
filterwarnings =
error
ignore:Can\'t import specreduce_data package:
ignore:numpy.ndarray size changed:
[coverage:run]
omit =
specreduce/_astropy_init*
specreduce/conftest.py
specreduce/*setup_package*
specreduce/tests/*
specreduce/*/tests/*
specreduce/extern/*
specreduce/version*
*/specreduce/_astropy_init*
*/specreduce/conftest.py
*/specreduce/*setup_package*
*/specreduce/tests/*
*/specreduce/*/tests/*
*/specreduce/extern/*
*/specreduce/version*
[coverage:report]
exclude_lines =
pragma: no cover
except ImportError
raise AssertionError
raise NotImplementedError
def main\(.*\):
pragma: py{ignore_python_version}
def _ipython_key_completions_
[egg_info]
tag_build =
tag_date = 0
|