diff options
author | Donald Stufft <donald@stufft.io> | 2016-06-30 13:05:21 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-06-30 12:05:21 -0500 |
commit | dcbfcccb7eabd30726fc84485bf7c012a4d3966b (patch) | |
tree | 1616bd425e56badf20127df0b6db3664e1f29a01 /MANIFEST.in | |
parent | c95966955b60a446e9d23af0b9500fbc5e43c0cc (diff) | |
download | py-bcrypt-git-dcbfcccb7eabd30726fc84485bf7c012a4d3966b.tar.gz |
Fix packaging (#87)
* Ensure that all files are packaged or excluded
* Add a test to ensure our packaging stays correct
Diffstat (limited to 'MANIFEST.in')
-rw-r--r-- | MANIFEST.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 622d66b..93a4480 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,11 @@ include LICENSE README.rst + +include tox.ini .coveragerc include src/build_bcrypt.py + recursive-include src/_csrc * +recursive-include tests *.py + +exclude requirements.txt tasks.py .travis.yml + +prune .travis |