-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
93 lines (78 loc) · 1.77 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
82
83
84
85
86
87
88
89
90
91
92
93
[flake8]
max-line-length = 120
extend_ignore =
# Pep8 specifies you SHOULD leave space around operators
E251
# whitespace between var and brackets ) } and ]
E202
# comments error. way too subjective.
E265
# too many leading #'s in a comment
E266
# Guido doesn't even do this.
E302
# module level import not at top of file
E402,
# Goes off when setting up user namespace
F401
RST303
# Unrecognized directive which is like always
RST304
RST305
# public module
D100
D101
D102
# public function
D103
# public package
D104
D105
D107
exclude =
build
dist
docs
node_modules
.tox
filename =
docs/source/**.rst
default_profile/**.py
enable_extensions=flake8-rst,rst-docstrings,flake8-docstrings,mccabe
[flake8-rst]
max-line-length = 120
ignore = E402, # module level import not at top of file
include = docs/source/*.rst
doctests = true
summarize = true
[bdist_wheel]
universal = 1
[metadata]
license_file = LICENSE
Requires-Dist: pywin32 >1.0; sys_platform == 'win32'
# https://www.python.org/dev/peps/pep-0345/#platform-multiple-use
# A Platform specification describing an operating system supported by the
# distribution which is not listed in the "Operating System" Trove
# classifiers. See "Classifier" below.#
platform=any
dist_version = 0.0.2
[nosetests]
cover-package = nose
where = .
py3where = .
exe = True
[pydocstyle]
convention = numpy
add-ignore = D101, D102, D105, D107, D203
[pylint]
max-line-length = 120
ignore = C0103
exclude =
build
dist
docs/build
.tox
.pytest*
tools
[aliases]
dev = build -j4