-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
40 lines (35 loc) · 1.01 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
[metadata]
# This includes the license file in the wheel.
license_files = LICENSE
[bdist_wheel]
# This flag says to generate wheels that support both Python 2 and Python
# 3. If your code will not run unchanged on both Python 2 and 3, you will
# need to generate separate wheels for each Python version that you
# support. Removing this line (or setting universal to 0) will prevent
# bdist_wheel from trying to make a universal wheel. For more see:
# https://packaging.python.org/tutorials/distributing-packages/#wheels
universal=0
[versioneer]
VCS = git
style = pep440
versionfile_source = medimages4tests/_version.py
versionfile_build = medimages4tests/_version.py
tag_prefix =
[flake8]
doctests = True
exclude =
**/__init__.py
*build/
docs/sphinxext/
docs/tools/
docs/conf.py
medimages4tests/_version.py
versioneer.py
docs/source/conf.py
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E203,E501
per-file-ignores =
setup.py:F401
[codespell]
ignore-words = .codespell-ignorewords