-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.65 KB
/
setup.py
File metadata and controls
49 lines (46 loc) · 1.65 KB
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 = 'postmortem',
version = '0.8.0',
author = 'Ken Kundert',
author_email = 'postmortem@nurdletech.com',
description = 'Produces a package of information for dependents and partners to be opened upon death.',
long_description = readme,
long_description_content_type = 'text/x-rst',
url = 'https://github.com/kenkundert/postmortem',
download_url = 'https://github.com/kenkundert/postmortem/tarball/master',
license = 'GPLv3+',
scripts = 'postmortem'.split(),
install_requires = [
'appdirs',
'avendesora>=1.14',
'arrow',
'docopt',
'inform>=1.16',
'nestedtext>=3.0',
'python-gnupg>=0.4.4',
# 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.
'voluptuous',
],
python_requires='>=3.8',
zip_safe = True,
keywords = 'postmortem'.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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities',
],
)