-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (52 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
import setuptools
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="egress_backend",
version="0.0.1",
description="CDK Backend for Egress App",
long_description=long_description,
long_description_content_type="text/markdown",
author="author",
package_dir={"": "egress_backend"},
packages=setuptools.find_packages(where="egress_backend"),
install_requires=[
"aws-cdk.core==1.154.0",
"aws-cdk.aws-lambda==1.154.0",
"aws-cdk.aws-s3==1.154.0",
"aws-cdk.aws-s3-notifications==1.154.0",
"aws-cdk.aws-amplify==1.154.0",
"aws-cdk.aws-cognito==1.154.0",
"aws-cdk.aws-sns==1.154.0",
"aws-cdk.aws-sns-subscriptions==1.154.0",
"aws-cdk.aws-stepfunctions==1.154.0",
"aws-cdk.aws-stepfunctions-tasks==1.154.0",
"aws-cdk.aws-dynamodb==1.154.0",
"aws-cdk.aws-kms==1.154.0",
"aws-cdk.aws-appsync==1.154.0",
"aws-cdk.aws-iam==1.154.0",
"aws-cdk.aws-ec2==1.154.0",
"aws-cdk.aws-efs==1.154.0",
"aws-cdk.aws-ses==1.154.0",
"cdk-nag==1.5.7",
],
tests_require=[
"pytest",
"tox",
"moto[s3,sns,dynamodb]",
"aws-cdk.assertions==1.154.0",
],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
],
)