Codebase list python-numpysane / debian/0.3-1 setup.py
debian/0.3-1

Tree @debian/0.3-1 (Download .tar.gz)

setup.py @debian/0.3-1raw · history · blame

#!/usr/bin/python

from setuptools import setup

setup(name         = 'numpysane',
      version      = '0.3',
      author       = 'Dima Kogan',
      author_email = 'dima@secretsauce.net',
      url          = 'http://github.com/dkogan/numpysane',
      description  = 'more-reasonable core functionality for numpy',
      license      = 'LGPL-3+',
      py_modules   = ['numpysane'],
      test_suite   = 'test_numpysane',
      install_requires = 'numpy')