-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.25 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
from codecs import open
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
setup(
name = 'tvm',
version = '1.0.0',
author = 'Ken Kundert',
author_email = 'tvm@nurdletech.com',
description = 'Time Value of Money',
long_description = readme,
long_description_content_type = 'text/x-rst',
scripts = 'tvm'.split(),
url = 'https://github.com/kenkundert/tvm',
download_url = 'https://github.com/kenkundert/tvm/tarball/master',
license = 'GPLv3+',
install_requires = 'appdirs docopt inform quantiphy'.split(),
python_requires = '>=3.6',
zip_safe = True,
keywords='money interest loans savings annuity financial'.split(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Office/Business :: Financial',
],
)