From 9fe17292bbc65eebcc4c49b3e96fddef9244f8e4 Mon Sep 17 00:00:00 2001 From: Chris Fonnesbeck Date: Wed, 9 May 2012 13:30:07 -0500 Subject: [PATCH] Fixed ImportError for submodules --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 22572f4..342dfb5 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,8 @@ license = LICENSE, url = URL, long_description = LONG_DESCRIPTION, - packages = ['mcex'], + packages = + ['mcex','mcex/distributions','mcex/history','mcex/step_methods'], classifiers =classifiers, install_requires=['theano','numpy','scipy','numdifftools'])