24 lines
682 B
Python
24 lines
682 B
Python
from setuptools import setup, find_packages
|
|
from interp import __version__
|
|
|
|
setup(
|
|
name = 'smbinterp',
|
|
version = __version__,
|
|
packages = find_packages(),
|
|
|
|
install_requires = [
|
|
'progressbar',
|
|
'Delny',
|
|
'scipy',
|
|
'numpy',
|
|
],
|
|
|
|
|
|
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',]},
|
|
)
|