Added interp to core.

This commit is contained in:
Stephen Diehl
2012-05-27 21:21:54 -04:00
parent 7c115a4afc
commit 077fb168ce
3 changed files with 82 additions and 1 deletions
+8 -1
View File
@@ -128,7 +128,14 @@ options(
'Topic :: System :: Distributed Computing',
],
ext_modules = cext,
cmdclass = {'build_ext': build_ext},
cmdclass = {
'build_ext': build_ext
},
entry_points = {
'console_scripts': [
'zipline = zipline.core.interpreter:main',
]
},
),
)