frac/setup.py
SheetJS 2f54d2f5c1 version bump 1.0.1: cleanup and python
- demo page (gh-pages branch)
- updated year
- flow annotations in separate frac.flow.js file
- introduced build infrastructure from js-xlsx
- python version
2015-04-21 21:14:03 -07:00

29 lines
777 B
Python

from distutils.core import setup
setup(
name='frac',
version='0.0.1',
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 :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Topic :: Office/Business',
'Topic :: Utilities',
]
)