Skip to content

Commit 7c99ea3

Browse files
committed
Fixed missing files.
1 parent e557066 commit 7c99ea3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
include .gitignore
12
include README.rst
23
include LICENSE.txt
34
include NOTICE.txt
45
include MANIFEST.in
5-
recursive-include shrew *
66
include requirements.txt
77
include test_requirements.txt
8+
recursive-include docs *
89
global-exclude *pyc *pyo

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from io import open
2121

22-
from setuptools import setup
22+
from setuptools import setup, find_packages
2323

2424
from shrew import __version__
2525

@@ -42,7 +42,7 @@
4242
# don't ever depend on refcounting to close files anywhere else
4343
long_description=long_description,
4444

45-
packages=['shrew'],
45+
packages=find_packages(exclude='tests'),
4646
scripts=['bin/shrew'],
4747
zip_safe=False,
4848
platforms='any',

0 commit comments

Comments
 (0)