-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 759 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 759 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
import setuptools
with open('version', 'r') as version:
setuptools.setup(
name='data_processing_stack',
version=version.readline(),
author='Alessio Vierti',
packages=setuptools.find_packages(exclude=['tests']),
install_requires=[
'aws-cdk.core==1.71.0',
'aws-cdk.aws-dynamodb==1.71.0',
'aws-cdk.aws-events==1.71.0',
'aws-cdk.aws-events-targets==1.71.0',
'aws-cdk.aws-lambda==1.71.0',
'aws-cdk.aws-lambda-event-sources==1.71.0',
'aws-cdk.aws-logs==1.71.0',
'aws-cdk.aws-sns==1.71.0',
'aws-cdk.aws-sqs==1.71.0',
'aws-cdk.aws_apigateway==1.71.0'
],
python_requires='>=3.6'
)