29 lines
777 B
Python
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',
|
||
|
]
|
||
|
)
|