-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
#!/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 = 'networth',
version = '1.2.1',
author = 'Ken Kundert',
author_email = '[email protected]',
description = 'Summarize net worth',
long_description = readme,
long_description_content_type = 'text/x-rst',
url = 'https://github.com/kenkundert/networth',
download_url = 'https://github.com/kenkundert/networth/tarball/master',
scripts = 'networth plot-networth'.split(),
install_requires = [
'appdirs',
'arrow',
'avendesora>=1.12',
'docopt',
'inform>=1.14',
'nestedtext',
'python-gnupg>=0.4.3',
# Be careful. There's a package called 'gnupg' that's an
# incompatible fork of 'python-gnupg'. If both are installed, the
# user will probably have compatibility issues.
'quantiphy',
'quantiphy_eval>=0.3',
'voluptuous',
],
python_requires='>=3.6',
zip_safe = True,
license = 'GPLv3+',
keywords = 'networth'.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',
'Topic :: Utilities',
],
)