-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
65 lines (55 loc) · 2.32 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
"""AWS Encryption SDK CLI."""
import io
import os
import re
from setuptools import find_packages, setup
VERSION_RE = re.compile(r"""__version__ = ['"]([0-9.]+)['"]""")
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*args):
"""Reads complete file contents."""
return io.open(os.path.join(HERE, *args), encoding="utf-8").read() # pylint: disable=consider-using-with
def get_version():
"""Reads the version from this module."""
init = read("src", "aws_encryption_sdk_cli", "internal", "identifiers.py")
return VERSION_RE.search(init).group(1)
def get_requirements():
"""Reads the requirements file."""
requirements = read("requirements.txt")
return list(requirements.strip().splitlines())
setup(
name="aws-encryption-sdk-cli",
version=get_version(),
packages=find_packages("src"),
package_dir={"": "src"},
url="http://aws-encryption-sdk-cli.readthedocs.io/en/latest/",
author="Amazon Web Services",
author_email="[email protected]",
maintainer="Amazon Web Services",
description=(
"This command line tool can be used to encrypt and decrypt files and directories using the AWS Encryption SDK."
),
long_description=read("README.rst"),
keywords="aws-encryption-sdk aws kms encryption cli command line",
license="Apache License 2.0",
install_requires=get_requirements(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
"Topic :: Security :: Cryptography",
],
entry_points={
"console_scripts": ["aws-encryption-cli=aws_encryption_sdk_cli:cli"],
"aws_encryption_sdk_cli.master_key_providers": "aws-kms=aws_encryption_sdk_cli.key_providers:aws_kms_master_key_provider", # noqa pylint: disable=line-too-long
},
)