smbinterp/setup.py

24 lines
615 B
Python

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