forgot the __init__.py file

This commit is contained in:
sm
2010-10-22 16:21:41 -06:00
parent 2db4169bfa
commit 431f3a4e44
2 changed files with 1 additions and 3 deletions
View File
+1 -3
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',]},
)