File: setup.py

package info (click to toggle)
mpmath 0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 556 kB
  • ctags: 704
  • sloc: python: 5,774; makefile: 33
file content (12 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
from distutils.core import setup

setup(name='mpmath',
      description = 'Python library for arbitrary-precision floating-point arithmetic',
      version='0.8',
      url='http://mpmath.googlecode.com',
      author='Fredrik Johansson',
      author_email='fredrik.johansson@gmail.com',
      license = 'BSD',
      packages=['mpmath', 'mpmath/tests'],
      classifiers=['Topic :: Scientific/Engineering :: Mathematics']
     )