smbinterp/setup.py

17 lines
545 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
name = 'smbinterp',
version = '0.01',
2010-10-22 15:21:41 -07:00
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",
)