diff options
author | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-07-27 23:33:45 -0400 |
---|---|---|
committer | Victor Chahuneau <vchahune@cs.cmu.edu> | 2012-07-27 23:33:45 -0400 |
commit | ee5e376e263d9aeabdeee6968b4457f53d3fc772 (patch) | |
tree | 34966090241c5dbd798b324a9f0f806c49aef778 /python/setup.py | |
parent | 1d481414a2fa8505a2591c88e2b7b8f86a682ca2 (diff) |
[python] Move python files to avoid pythonpath conflicts
Diffstat (limited to 'python/setup.py')
-rw-r--r-- | python/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/setup.py b/python/setup.py index 1d1d7e45..7be976e8 100644 --- a/python/setup.py +++ b/python/setup.py @@ -48,5 +48,6 @@ setup( name='cdec', ext_modules=ext_modules, requires=['configobj'], - packages=['cdec', 'cdec.sa'] + packages=['cdec', 'cdec.sa'], + package_dir={'': 'pkg'} ) |