Skip to content

Commit 18df9d1

Browse files
authored
Merge pull request #83 from rgommers/fix-install
BUG: fix installing numpydoc, broken with missing templates after gh-77.
2 parents de494ff + c9881fa commit 18df9d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include MANIFEST.in
2-
recursive-include numpydoc/tests *.py
2+
recursive-include numpydoc *
33
include *.txt
44
include *.rst
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
url="https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt",
3939
license="BSD",
4040
install_requires=["sphinx >= 1.0.1", 'Jinja2>=2.3'],
41-
package_data={'numpydoc': ['tests/test_*.py']},
41+
package_data={'numpydoc': ['tests/test_*.py', 'templates/*.rst']},
4242
test_suite = 'nose.collector',
4343
cmdclass={"sdist": sdist},
4444
)

0 commit comments

Comments
 (0)