-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 891 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(name='dmath',
version='0.9',
description="Math routines for Python's Decimal type",
author='Brian Beck, Christopher Hesse',
author_email='exogen@gmail.com, christopher.hesse@gmail.com',
url='http://code.google.com/p/dmath',
download_url='http://dmath.googlecode.com/svn/trunk/',
packages=find_packages(),
license='MIT',
keywords='decimal math precision trigonometry trigonometric',
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)