forked from spacetelescope/wiimatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (47 loc) · 1.18 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
[metadata]
package_name = wiimatch
description = A package for optimal "matching" N-dimentional image background
long_description = README.rst
author = Mihai Cara
author_email = help@stsci.edu
license = BSD-3-Clause
edit_on_github = False
github_project = spacetelescope/wiimatch
description-file = README.rst
url = https://github.com/spacetelescope/wiimatch
homepage = https://github.com/spacetelescope/wiimatch
[build-sphinx]
source-dir = docs
build-dir = docs
all_files = 1
[upload_docs]
upload-dir = docs/_build/html
show-response = 1
[flake8]
count = True
doctests = True
show_source = True
statistics = True
exclude =
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
ignore =
E501,
E402,
F403,
W504
[tool:pytest]
minversion = 2.2
addopts = --ignore=build
norecursedirs = dist build docs/_build .eggs
doctest_plus = enabled
doctest_optionflags= NORMALIZE_WHITESPACE ELLIPSIS FLOAT_CMP
[entry_points]
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=0