forked from aws/aws-encryption-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (42 loc) · 1.51 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (42 loc) · 1.51 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
50
#!/usr/bin/env python
import os
import re
from setuptools import setup, find_packages
VERSION_RE = re.compile(r'''__version__ = ['"]([0-9.]+)['"]''')
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*args):
return open(os.path.join(HERE, *args)).read()
def get_version():
init = read('aws_encryption_sdk', 'identifiers.py')
return VERSION_RE.search(init).group(1)
setup(
name='aws-encryption-sdk',
packages=find_packages(exclude=['test*']),
version=get_version(),
author='Amazon Web Services',
maintainer='Amazon Web Services',
url='https://github.com/awslabs/aws-encryption-sdk-python',
description='AWS Encryption SDK implementation for Python',
long_description=read('README.md'),
keywords='aws-encryption-sdk aws kms encryption',
license='Apache License 2.0',
install_requires=[
'boto3>=1.4.4',
'cryptography>=1.4.0',
'attrs>=16.3.0'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Security',
'Topic :: Security :: Cryptography'
]
)