forked from spacetelescope/acstools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
76 lines (71 loc) · 2.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
[metadata]
name = acstools
description = Python Tools for HST ACS
long_description = Python Tools for HST ACS (Advanced Camera for Surveys) Data
long_description_content_type = text/plain
keywords = astronomy, astrophysics, calibration
author = Matt Davis, Warren Hack, Norman Grogin, Pey Lian Lim, Sara Ogaz, Leornado Ubeda, Mihai Cara, David Borncamp, Nathan Miles
author_email = [email protected]
license = BSD
license_file = LICENSE.md
url = https://github.com/spacetelescope/acstools
edit_on_github = False
github_project = spacetelescope/acstools
classifier =
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Bug Reports = https://github.com/spacetelescope/acstools/issues/
Source = https://github.com/spacetelescope/acstools/
Help = https://hsthelp.stsci.edu
[options]
packages = find:
zip_safe = False
setup_requires=
setuptools_scm
install_requires =
numpy
astropy>=3.1
beautifulsoup4
requests
python_requires = >=3.6
[options.extras_require]
all =
matplotlib
scipy
scikit-image
stsci.tools
stsci.imagestats
test =
pytest
pytest-astropy-header
ci-watson
docs =
sphinx-automodapi
[entry_points]
acs_destripe = acstools.acs_destripe:main
acs_destripe_plus = acstools.acs_destripe_plus:main
[tool:pytest]
addopts = --doctest-ignore-import-errors
minversion = 4.0
testpaths = "acstools" "doc"
norecursedirs = build doc/build
astropy_header = true
xfail_strict = true
junit_family=xunit2
[flake8]
# Ignoring these for now:
# E221: multiple spaces before operator
# E226: missing whitespace around arithmetic operator
# E262: inline comment should start with '# '
# E265: block comment should start with '#'
# E501: line too long
# E704: multiple statements on one line (def)
# W504: line break after binary operator
ignore = E221,E226,E262,E265,E501,E704,W504