-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.52 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
with open('HISTORY.md') as history_file:
HISTORY = history_file.read()
setup(
name='aws_secret_cdk',
version='5.3.0',
license='GNU GENERAL PUBLIC LICENSE Version 3',
packages=find_packages(exclude=['venv', 'test']),
description='Package to create a SecretsManager\'s secret with auto rotation.',
long_description=README + '\n\n' + HISTORY,
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
# Aws Cdk dependencies.
'aws-cdk.core>=1.60.0,<2.0.0',
'aws-cdk.aws_iam>=1.60.0,<2.0.0',
'aws-cdk.aws_ec2>=1.60.0,<2.0.0',
'aws-cdk.aws_lambda>=1.60.0,<2.0.0',
'aws-cdk.aws_rds>=1.60.0,<2.0.0',
'aws-cdk.aws_secretsmanager>=1.60.0,<2.0.0',
'aws-cdk.aws_s3_deployment>=1.60.0,<2.0.0',
# Other dependencies.
'aws-lambda>=2.1.2,<3.0.0'
],
author='Laimonas Sutkus',
author_email='laimonas@idenfy.com,laimonas.sutkus@gmail.com',
keywords='AWS CDK CloudFormation SecretsManager Infrastructure Cloud DevOps',
url='https://github.com/idenfy/AwsSecretCdk',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
)