We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e557066 commit 7c99ea3Copy full SHA for 7c99ea3
MANIFEST.in
@@ -1,8 +1,9 @@
1
+include .gitignore
2
include README.rst
3
include LICENSE.txt
4
include NOTICE.txt
5
include MANIFEST.in
-recursive-include shrew *
6
include requirements.txt
7
include test_requirements.txt
8
+recursive-include docs *
9
global-exclude *pyc *pyo
setup.py
@@ -19,7 +19,7 @@
19
20
from io import open
21
22
-from setuptools import setup
+from setuptools import setup, find_packages
23
24
from shrew import __version__
25
@@ -42,7 +42,7 @@
42
# don't ever depend on refcounting to close files anywhere else
43
long_description=long_description,
44
45
- packages=['shrew'],
+ packages=find_packages(exclude='tests'),
46
scripts=['bin/shrew'],
47
zip_safe=False,
48
platforms='any',
0 commit comments