Skip to content

Commit 415d1a4

Browse files
Chris Fonnesbecktwiecki
authored andcommitted
BLD Added package_data information to setup.py (pymc-devs#1340)
* Added package_data information to include non-Python files in source distribution * Removed MANIFEST.in
1 parent c7091d0 commit 415d1a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

MANIFEST.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@
5050
packages=['pymc3', 'pymc3.distributions',
5151
'pymc3.step_methods', 'pymc3.tuning',
5252
'pymc3.tests', 'pymc3.glm', 'pymc3.examples',
53-
'pymc3.backends', 'pymc3.variational'],
54-
package_data = {'pymc3.examples': ['data/*.*']},
53+
'pymc3.backends', 'pymc3.variational', 'docs', '.'],
54+
package_data={'pymc3.examples': ['data/*.*'],
55+
'.': ['requirements.txt', '*.md'],
56+
'docs': ['source/*/*']},
5557
classifiers=classifiers,
5658
install_requires=install_reqs,
5759
tests_require=test_reqs,

0 commit comments

Comments
 (0)