-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
81 lines (70 loc) · 1.48 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
77
78
79
80
81
[metadata]
name = wax-toolbox
author = See AUTHORS
author-email = "jeusel.guillaume@gmail.com"
summary = Generic Python Tools
description-file = README.rst
home-page = https://github.com/gjeusel/wax-toolbox
classifier =
Development Status :: 4 - Beta
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.6
[files]
packages = wax_toolbox
# add datafile to be included in your distribution packages here, ex:
#data-files =
# data = data/*
# frontend = frontend/dist/*
# CLI settings
#[entry_points]
#console_scripts =
# wax_toolbox = wax_toolbox.cli:main
[build_sphinx]
project = wax_toolbox
source-dir = docs
build-dir = docs/build
[upload_sphinx]
upload-dir = docs/_build/html
[pbr]
warnerrors = True
[wheel]
universal = 1
[yapf]
allow_split_before_dict_value = false
[flake8]
exclude = */migrations/*,*/south_migrations/*
ignore = E501 # line too long
[isort]
line_length = 100
[tool:pytest]
pep8maxlinelength = 120
pep8ignore = E402 E123 E501 E131 E126 E128 W503
norecursedirs =
.git
.tox
.env
.eggs
.cache
dist
build
south_migrations
migrations
chunk_scripts
python_files =
test_*.py
*_test.py
tests.py
addopts =
#-rxEfsw
#-W error
#--strict
#--doctest-modules
#--doctest-glob=\*.rst
--tb=short
--cov-report=term-missing
--cov=wax-toolbox
#--pep8
#--flakes