-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 887 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 887 Bytes
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
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
"""
from setuptools import find_packages, setup
setup(
name="cdk-opinionated-constructs",
version="4.7.40",
description="AWS CDK constructs come without added security configurations.",
long_description="The idea behind this project is to create secured constructs from the start. \n"
"Supported constructs: ALB, ECR, LMB, NLB, S3, SNS, WAF, RDS",
license="MIT",
package_dir={"": "."},
packages=find_packages(where="."),
install_requires=[
"aws-cdk-lib>=2.177.0",
"constructs>=10.4.2",
"cdk-monitoring-constructs>=6.0.0",
"pydantic>=2.9.0",
"pydantic-core>=2.23.0",
"pyyaml>=6.0.0",
"tenacity>=8.0.1",
"click>=8.1.3",
"typeguard~=2.13.3",
],
python_requires=">=3.11",
)