-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 904 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 904 Bytes
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
27
28
29
30
31
32
33
from setuptools import setup, find_packages
with open('README.rst') as fp:
readme = fp.read()
setup(
name='usury',
version='0.1.0',
description='Python interest calculation library',
long_description=readme,
license='Apache 2.0',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries :: Python Modules',
],
author='Ryan T. Dean',
author_email='rtdean@cytherianage.net',
url='https://github.com/rtdean/usury',
keywords='usury interest',
packages=find_packages(),
package_data={
'': ['LICENSE'],
},
include_package_data=True,
install_requires=[],
tests_require=[],
)