forked from spacetelescope/imexam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (65 loc) · 1.68 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
[metadata]
package_name = imexam
description = Astropy affiliated package
long_description = A package to help perform command-line image examination and plotting
author = Megan Sosey
author_email = [email protected]
license = BSD
edit_on_github = False
github_project = spacetelescope/imexam
description-file = README.rst
url = http://imexam.readthedocs.io/
homepage = http://imexam.readthedocs.io/
classifiers =
'Intended Audience :: Science/Research'
'License :: OSI Approved :: BSD License'
'Operating System :: OS Independent'
'Development Status :: 4 - Beta'
'Programming Language :: Python'
'Programming Language :: C'
'Programming Language :: Cython'
'Programming Language :: Python :: 3'
'Programming Language :: Python :: Implementation :: CPython'
'Topic :: Scientific/Engineering :: Astronomy'
'Topic :: Software Development :: Libraries :: Python Modules'
[options]
python_requires >= 3.6
setup_requires =
setuptools_scm
setuptools >= 30.3.0
packages =
imexam
install_requires =
numpy>=1.14
scipy>=0.18
astropy>=3.0
matplotlib
zip_safe = false
[easy_install]
zip_ok = False
[options.extras_require]
docs =
sphinx
sphinx-automodapi
sphinx-astropy
graphviz
tests =
pytest
photometry =
photutils
[build-system]
requires = ["cython"]
[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 wrappers cextern
pep8ignore = E501 W391
[flake8]
exclude = extern
select = E101 W191 W291 W292 W293 W391 E11 E502 E722 E901 E902