File tree Expand file tree Collapse file tree 4 files changed +63
-1
lines changed
Expand file tree Collapse file tree 4 files changed +63
-1
lines changed Original file line number Diff line number Diff line change 1+ inherits :
2+ - strictness_low
3+
4+ ignore-patterns :
5+ - (^|/)\..+
6+ - ^docs/
7+ - ^build/
8+
9+ ignore-paths :
10+ - build-scripts
11+
12+ test-warnings : true
13+
14+ output-format : grouped
15+
16+ dodgy :
17+ run : true
18+
19+ mccabe :
20+ run : false
21+
22+ pep257 :
23+ run : false
24+
25+ pep8 :
26+ run : true
27+ options :
28+ max-line-length : 100
29+
30+ pyflakes :
31+ run : true
32+
33+ pylint :
34+ run : true
35+ options :
36+ max-line-length : 80
37+ const-rgx : " (([A-Z_][A-Z0-9_]*)|(__.*__)|log)$"
38+ const-hint : " (([A-Z_][A-Z0-9_]*)|(__.*__)|log)$"
39+ ignored-classes : pytest
40+ disable :
41+ # see http://pylint-messages.wikidot.com/all-codes
42+ - C0302
43+ - W0142
44+ - W0141
45+ - E1123
46+ - W1202
47+ - R0204
48+ - C1001
49+ - C0201
50+ - C0413
Original file line number Diff line number Diff line change 1+
2+ include CONTRIBUTING.rst
3+ include HISTORY.rst
4+ include README.md
5+
6+ recursive-include tests *
7+ recursive-exclude * __pycache__
8+ recursive-exclude * *.py[co]
9+
10+ recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
Original file line number Diff line number Diff line change 1- __version__ = '0.0.1 '
1+ __version__ = '0.0.2 '
Original file line number Diff line number Diff line change 1+ [bdist_wheel]
2+ universal = 1
You can’t perform that action at this time.
0 commit comments