smbinterp/setup.py

17 lines
548 B
Python

from setuptools import setup, find_packages
setup(
name = 'interplosion',
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",
)