You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
567 B
Python

from setuptools import setup, find_packages
from interp import __version__
setup(
name = 'smbinterp',
version = __version__,
packages = find_packages(),
install_requires = [
'progressbar',
'scipy',
'numpy',
],
author = "Stephen M. McQuay",
author_email = "stephen@mcquay.me",
url = "https://mcquay.me/hg/research",
license = "GPL",
)