from setuptools import setup, find_packages setup( name = 'smbinterp', version = '0.01', packages = find_packages(), install_requires = [ 'numpy', 'scipy', ], # entry_points = {'console_scripts': ['booze = baker.booze:main',]}, author = "Stephen M. McQuay", author_email = "stephen@mcquay.me", url = "https://mcquay.me/hg/research", license = "GPL", )