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 a77f33b
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ deploy:
distributions: sdist
user: "trustpilot"
password:
secure: iMb/28iA912+TelMnZ18iVL32DBfohHpQ8I3WpPtscTChMpd7j2924ECwI6mwlBlgxYb4lD0jFvtN/wRCcvUlBZ8aXamXQCqe/IDzxQz+GXrC+pJYj34C8cdA7r6be1A9N/0MbD2WHLb/VxQK8cssATOUkbHvdF0pfbFc/V6oXiFIyBn88aphGnFaoDWlVH4THYf7SSIoiiyn+n82xEUfy9pfSYlaHiiXzb3Kcql2ORpFzLK0PBoU2FtXX94HQWHJADu0ruzYSSdkHoWxZ2px5w7VEdvf58JmupNDc43o8NEiUaULyxEzCRHsPRpd6HahvCGuLDcnhQ5lIvOmkgpawnZQYvUSYANQvd/1K67MShkASgVrZmNAPhnh1x66UqatF1uE5TrNCsS2UFk7tx2yB9671NFFbVgdpshX+M+PlO+gRCinBanWVKUjRiujhlKNJdadWGoU4S09li6w9Jz17XFLegLqt/3Q//Hnq/kABoIFAqKlTDiPsp+QxZLTPO7OcqruDnd+v9Dg4QOfLoE/VKq7Al60i81HzK8Pcjy7GhPZtVNQpsu3E3BjTl3041j/vp1DOHy2Vt6N8OJLJTUnE74oR/zBTyP9WD7tJzn7376/8wmTh4KqPm/i/zzHroolCIK34OQlhoigYavT1DFidGKS53HfTFf3IP+0M9nfmU=
secure: owvGC7uHg3vWP+HGI9eRjD1C2XdCKxK5KFhvDM+M5voaMoOgP5k/yJCbL9PbPRDgXIBKmB5P0jruyYmEYQJbqtheVCqDDhDoCPY9mymxuRjugZKLDqgFG6WDTYCUPZxvw0pUxn+dlf5QE2uNQa4hz3Ta5qaGzVmkqHampd0IxXeCDTTngMKS6z/IMtCnJTeE6NArhUVbWMi4s6apAhWVKaNFpDgEPcDC17CSkrzfTYGawQh0MUX1Pfyy9SD3wZH+zeBO31lVEQQccipfojbepEAAOe5HOfI8Ke6isZDo1LDsSS+Hrypj9aC1P6TVLpPUTI5KJhsGB3cJJkXuCnJD9w7k0M4KmzxYj3A0Daqpl9LDxcjNPJzHCAx2LKtYxpBFQcwRmNpBMxbVrfWhx8a4ZsuPj+LkZsZR3+UwpscKsp6pSGSbtsbA2aKuArfu/OBWGva8rLSSVAvwgxGn3t4Km4tsVOa2b2IVtq8XJuMs1sNoyzrM5ZSbjK+Zr1sYe5B9jojKqQLschfKR4EKXGiRWqzSRJgWMt0nzawZjqy8Mosw1NAbBUkmLkaegboPeqFudSpWRUp27HYusIQu4oZFMScx5/SFmOe+1xGHQ9IyxD9xJ8/2fH8KM6LTIlAvLQPLgos/TeUEKm0X9TFSlLGtotWIo93ZC7EL1DBZW6ChOBs=
on:
tags: false
branch: master
Expand Down
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.3'
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 a77f33b

Please sign in to comment.