-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (32 loc) · 1.09 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
import setuptools
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="stack",
version="0.0.1",
description="An empty CDK Python app",
long_description=long_description,
long_description_content_type="text/markdown",
author="PillarGG",
package_dir={"": "stack"},
packages=setuptools.find_packages(where="stack"),
install_requires=[
"aws_cdk.aws_lambda_python==1.127.0",
"aws-cdk.core==1.127.0",
"aws-cdk.aws-lambda==1.127.0",
"aws-cdk.aws-s3==1.127.0",
"aws-cdk.aws-s3-notifications==1.127.0",
"aws-cdk.aws-mediaconvert==1.127.0",
"aws-cdk.aws-lambda-event-sources==1.127.0",
"aws-cdk.aws-lambda-python==1.127.0",
"aws-cdk.aws-ecr==1.127.0",
"aws-cdk.aws-stepfunctions==1.127.0",
"aws-cdk.aws-stepfunctions-tasks==1.127.0",
"aws-cdk.pipelines==1.127.0",
"aws-cdk.aws-codepipeline-actions==1.127.0",
"aws_cdk.aws_ses==1.127.0",
"aws_cdk.aws_logs==1.127.0",
"boto3==1.17.39"
],
python_requires=">=3.6",
)