-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·92 lines (79 loc) · 2.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# This file is part of tiny_gnupg, a small-as-possible solution for
# handling GnuPG ed25519 ECC keys.
#
# Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html
# Copyright © 2019-2021 Gonzo Investigative Journalism Agency, LLC
# © 2019-2021 Richard Machado <[email protected]>
# All rights reserved.
#
from setuptools import setup, find_packages
from tiny_gnupg import __package__, __version__, __license__
description = (
"tiny_gnupg - A small-as-possible solution for handling GnuPG "
"ed25519 ECC keys."
)
with open("PREADME.rst", "r") as preadme:
long_description = preadme.read()
with open("CHANGES.rst", "r") as changelog:
long_description += changelog.read()
with open("README.rst", "w+") as readme:
readme.write(long_description)
setup(
name=__package__,
license=__license__,
version=__version__,
description=description,
long_description=long_description,
long_description_content_type="text/x-rst",
author="Gonzo Investigative Journalism Agency, LLC",
author_email="[email protected]",
maintainer="Gonzo Investigative Journalism Agency, LLC",
maintainer_email="[email protected]",
classifiers=[
"Framework :: AsyncIO",
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Topic :: Internet",
"Topic :: Utilities",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Networking",
"Topic :: Adaptive Technologies",
"Topic :: Communications",
"Topic :: Communications :: Email",
"Topic :: Security :: Cryptography",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
keywords=" ".join(
[
"gpg gpg2 gnupg gnupg2",
"pgp openpgp org",
"await async asyncio aiohttp",
"clean simple code",
"elliptic curve crypto",
"ed25519 25519",
"wrapper automation adapter-pattern",
"tor anonymous anonymity",
"security appsec opsec infosec",
"beta testing",
"communications comms message messages",
"encrypt encryption authentication",
"decrypt decryption verify verification",
"signature signatures",
"SOCKSv5 socks5 proxy",
"web key keys keyserver",
]
),
include_package_data=True,
install_requires=[
"aiohttp",
"aiohttp_socks",
"asyncio_contextmanager",
],
tests_require=["pytest"],
packages=find_packages(),
) if __name__ == "__main__" else 0