Skip to content

Commit

Permalink
add more files to make it build
Browse files Browse the repository at this point in the history
  • Loading branch information
sloev committed Jan 11, 2018
1 parent f9eeae3 commit cab2e4e
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 1 deletion.
50 changes: 50 additions & 0 deletions .prospector.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
inherits:
- strictness_low

ignore-patterns:
- (^|/)\..+
- ^docs/
- ^build/

ignore-paths:
- build-scripts

test-warnings: true

output-format: grouped

dodgy:
run: true

mccabe:
run: false

pep257:
run: false

pep8:
run: true
options:
max-line-length: 100

pyflakes:
run: true

pylint:
run: true
options:
max-line-length: 80
const-rgx: "(([A-Z_][A-Z0-9_]*)|(__.*__)|log)$"
const-hint: "(([A-Z_][A-Z0-9_]*)|(__.*__)|log)$"
ignored-classes: pytest
disable:
# see http://pylint-messages.wikidot.com/all-codes
- C0302
- W0142
- W0141
- E1123
- W1202
- R0204
- C1001
- C0201
- C0413
10 changes: 10 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

include CONTRIBUTING.rst
include HISTORY.rst
include README.md

recursive-include tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]

recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
2 changes: 1 addition & 1 deletion sanicargs/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.1'
__version__ = '0.0.2'
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1

0 comments on commit cab2e4e

Please sign in to comment.