forked from py-moneyed/py-moneyed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 923 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup, find_packages
setup(
name='py-moneyed',
packages=find_packages('src'),
package_dir={'': 'src'},
version='0.4.1',
description='Provides Currency and Money classes for use in your Python code.',
author='Kai',
author_email='k@limist.com',
url='http://github.com/limist/py-moneyed',
download_url='',
keywords="money currency class abstraction",
license='BSD',
install_requires=[],
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries :: Python Modules'],
long_description=open('README.rst', 'r').read()
)