smbinterp/setup.py

24 lines
615 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2011-01-28 11:21:26 -08:00
# erase me
setup(
name = 'smbinterp',
2011-02-02 10:52:53 -08:00
version = '0.02',
2010-10-22 15:21:41 -07:00
packages = find_packages(),
2011-02-02 10:52:53 -08:00
install_requires = [
'numpy',
'scipy',
2011-02-02 10:52:53 -08:00
'Delny',
],
2011-02-02 10:52:53 -08:00
author = "Stephen M. McQuay",
author_email = "stephen@mcquay.me",
2011-02-02 10:52:53 -08:00
url = "https://mcquay.me/hg/research",
license = "GPL",
# entry_points = {'console_scripts': ['booze = baker.booze:main',]},
)