Skip to content

Commit

Permalink
Replaced package list with find_packages in setup.py; removed example…
Browse files Browse the repository at this point in the history
…s/data/__init__.py
  • Loading branch information
fonnesbeck authored and twiecki committed Mar 16, 2017
1 parent f2aae73 commit 1210ed6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
Empty file removed pymc3/examples/data/__init__.py
Empty file.
19 changes: 3 additions & 16 deletions setup.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
from setuptools import setup
from setuptools import setup, find_packages
import sys


Expand Down Expand Up @@ -48,21 +48,8 @@
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
packages=['pymc3',
'pymc3.backends',
'pymc3.distributions',
'pymc3.examples',
'pymc3.glm',
'pymc3.step_methods',
'pymc3.step_methods.hmc',
'pymc3.tuning',
'pymc3.tests',
'pymc3.variational',
'pymc3.external',
'pymc3.gp',
'pymc3.plots'
],
package_data={'docs':['*'],},
packages=find_packages(),
package_data={'docs':['*'], 'pymc3.examples':['data/*']},
classifiers=classifiers,
install_requires=install_reqs,
tests_require=test_reqs,
Expand Down

0 comments on commit 1210ed6

Please sign in to comment.