Skip to content

Commit cab2e4e

Browse files
committed
add more files to make it build
1 parent f9eeae3 commit cab2e4e

File tree

4 files changed

+63
-1
lines changed

4 files changed

+63
-1
lines changed

.prospector.yaml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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

MANIFEST.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

sanicargs/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.1'
1+
__version__ = '0.0.2'

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

0 commit comments

Comments
 (0)