-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (56 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
import sys
import functools
from setuptools import setup, find_packages
version = '2.3'
if sys.version_info[0] >= 3:
open = functools.partial(open, encoding='utf-8')
setup(name='gpgkeys',
version=version,
description='A GnuPG Shell',
long_description=open('README.rst').read() + '\n' +
open('CHANGES.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords='gnupg, gpg, gpg2, front-end, gpg shell, shell, REPL',
author='Stefan H. Holek',
author_email='[email protected]',
url='https://github.com/stefanholek/gpgkeys',
license='GPLv3',
packages=find_packages(
exclude=[
'gpgkeys.tests',
],
),
include_package_data=False,
zip_safe=False,
install_requires=[
'setuptools',
'rl >= 3.2',
'kmd >= 2.4',
'term >= 2.5',
],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
entry_points = {
'console_scripts': 'gpgkeys=gpgkeys.gpgkeys:main',
},
project_urls={
'Documentation': 'https://gpgkeys.readthedocs.io/en/stable/',
},
extras_require={
'docs': [
'sphinx == 5.3.0',
'sphinx-rtd-theme == 1.0.0',
],
},
)