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.
1 parent cae3c87 commit d1c8f0aCopy full SHA for d1c8f0a
.gitignore
@@ -15,3 +15,4 @@ dist
15
doc/_build
16
numpydoc/tests/tinybuild/_build
17
numpydoc/tests/tinybuild/generated
18
+MANIFEST
setup.py
@@ -48,7 +48,12 @@ def read(fname):
48
url="https://numpydoc.readthedocs.io",
49
license="BSD",
50
install_requires=["sphinx >= 1.6.5", 'Jinja2>=2.3'],
51
- package_data={'numpydoc': ['tests/test_*.py', 'templates/*.rst']},
52
- test_suite = 'nose.collector',
+ package_data={'numpydoc': [
+ 'tests/test_*.py',
53
+ 'tests/tinybuild/Makefile',
54
+ 'tests/tinybuild/index.rst',
55
+ 'tests/tinybuild/*.py',
56
+ 'templates/*.rst',
57
+ ]},
58
cmdclass={"sdist": sdist},
59
)
0 commit comments