-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (43 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (43 loc) · 1.59 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
51
52
53
54
55
56
57
58
import setuptools
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="InfrastructureCdkSample",
version="1.0.0",
description="Create new VPC, network ACL, AutoscalingGroup behind a load balancer, RDS instance, bastion host, as well as (almost) proper NACL configuration",
long_description=long_description,
long_description_content_type="text/markdown",
author="Miguel Zenon Nicanor Lerias Saavedra (Zenon)",
package_dir={"": "infrastructure_cdk"},
packages=setuptools.find_packages(where="infrastructure_cdk"),
install_requires=[
"aws-cdk.core",
"aws-cdk.aws-ec2",
"aws-cdk.aws-elasticloadbalancingv2",
"aws-cdk.aws-autoscaling",
"aws-cdk.aws-lambda",
"aws-cdk.aws_apigateway",
"aws-cdk.aws-rds",
"aws_cdk.aws_ecs",
"aws_cdk.aws_ecr_assets",
"aws_cdk.aws_ecs_patterns",
"aws_cdk.pipelines",
"aws_cdk.aws_codepipeline",
"aws_cdk.aws_codepipeline_actions",
"boto3"
],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Typing :: Typed",
],
)