smbinterp/setup.py
Stephen Mardson McQuay b9ea6a3ac2 modified code to use Distribute (python's distribution framework)
one should simply run `python setup.py install` to install these librarires
2010-03-08 13:31:51 -07:00

16 lines
417 B
Python

from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'bakinterp',
version = '0.01',
package_dir = {'':'lib'},
packages = find_packages('lib'),
install_requires = [
'numpy',
'scipy',
],
)