Skip to content

Commit 1210ed6

Browse files
fonnesbecktwiecki
authored andcommitted
Replaced package list with find_packages in setup.py; removed examples/data/__init__.py
1 parent f2aae73 commit 1210ed6

File tree

2 files changed

+3
-16
lines changed

2 files changed

+3
-16
lines changed

pymc3/examples/data/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
import sys
44

55

@@ -48,21 +48,8 @@
4848
license=LICENSE,
4949
url=URL,
5050
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':['*'],},
51+
packages=find_packages(),
52+
package_data={'docs':['*'], 'pymc3.examples':['data/*']},
6653
classifiers=classifiers,
6754
install_requires=install_reqs,
6855
tests_require=test_reqs,

0 commit comments

Comments
 (0)