forgot the __init__.py file

This commit is contained in:
Stephen McQuay 2010-10-22 16:21:41 -06:00
parent 2db4169bfa
commit 431f3a4e44
2 changed files with 1 additions and 3 deletions

0
interp/__init__.py Normal file
View File

View File

@ -3,12 +3,10 @@ from setuptools import setup, find_packages
setup(
name = 'interplosion',
version = '0.01',
package_dir = {'':'interp'},
packages = find_packages('interp'),
packages = find_packages(),
install_requires = [
'numpy',
'scipy',
],
# entry_points = {'console_scripts': ['booze = baker.booze:main',]},
)