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 f2aae73 commit 1210ed6Copy full SHA for 1210ed6
pymc3/examples/data/__init__.py
setup.py
@@ -1,5 +1,5 @@
1
#!/usr/bin/env python
2
-from setuptools import setup
+from setuptools import setup, find_packages
3
import sys
4
5
@@ -48,21 +48,8 @@
48
license=LICENSE,
49
url=URL,
50
long_description=LONG_DESCRIPTION,
51
- packages=['pymc3',
52
- 'pymc3.backends',
53
- 'pymc3.distributions',
54
- 'pymc3.examples',
55
- 'pymc3.glm',
56
- 'pymc3.step_methods',
57
- 'pymc3.step_methods.hmc',
58
- 'pymc3.tuning',
59
- 'pymc3.tests',
60
- 'pymc3.variational',
61
- 'pymc3.external',
62
- 'pymc3.gp',
63
- 'pymc3.plots'
64
- ],
65
- package_data={'docs':['*'],},
+ packages=find_packages(),
+ package_data={'docs':['*'], 'pymc3.examples':['data/*']},
66
classifiers=classifiers,
67
install_requires=install_reqs,
68
tests_require=test_reqs,
0 commit comments