We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ad04bf + 5b4e1ea commit 36adec5Copy full SHA for 36adec5
MANIFEST.in
@@ -1,2 +1,8 @@
1
+include MANIFEST.in
2
recursive-include numpydoc/tests *.py
3
include *.txt
4
+include *.rst
5
+
6
+# Exclude what we don't want to include
7
+prune */__pycache__
8
+global-exclude *.pyc *~ *.bak *.swp *.pyo
setup.py
@@ -1,6 +1,8 @@
from __future__ import division, print_function
import sys
+from distutils.command.sdist import sdist
import setuptools
from distutils.core import setup
@@ -27,4 +29,5 @@
27
29
requires=["sphinx (>= 1.0.1)"],
28
30
package_data={'numpydoc': ['tests/test_*.py']},
31
test_suite = 'nose.collector',
32
+ cmdclass={"sdist": sdist},
33
)
0 commit comments