frac/setup.py
SheetJS 9a9ed4d1fa version bump 1.0.2: cleanup
- cont: more direct reverse iteration
- README cleanup
- python linting and tests
2015-05-04 23:19:23 -07:00

30 lines
850 B
Python

from distutils.core import setup
setup(
name='frac',
version='1.0.2',
author='SheetJS',
author_email='dev@sheetjs.com',
url='http://oss.sheetjs.com/frac',
description='Rational approximations to numbers',
long_description = """
Rational approximations to numbers
This module can generate fraction representations using:
- Mediant method (akin to fractions.Fraction#limit_denominator)
- Aberth method (as used by spreadsheet software)
""",
platforms = ["any"],
requires=[],
py_modules=['frac'],
scripts = [],
license = "Apache-2.0",
keywords = ['frac', 'fraction', 'rational', 'approximation'],
classifiers = [
'Development Status :: 5 - Production/Stable'
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Utilities',
]
)