forked from GuiPimenta-Dev/lambda-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (46 loc) · 1.34 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
from setuptools import find_packages, setup
setup(
name="lambda_forge",
version="2.0.2",
packages=find_packages(),
license="MIT",
install_requires=[
"attrs==22.1.0",
"aws-cdk-lib>=2.0.0,<3.0.0",
"constructs>=10.0.0,<11.0.0",
"boto3==1.26.59",
"click==8.1.3",
"pytest<7.0.0",
"pytest-sugar==1.0.0",
"coverage==7.2.3",
"python-dotenv==1.0.1",
"b-aws-websocket-api==2.0.0",
"requests==2.31.0",
"AWSIoTPythonSDK==1.5.4",
"awslambdaric==2.0.11",
"pyfiglet==1.0.2",
"inquirerpy==0.3.4",
"tabulate==0.9.0",
"diagrams==0.23.4",
],
include_package_data=True,
package_data={
"lambda_forge": [
"builders/*",
"builders/**/*",
"scaffold/*",
"scaffold/.gitignore",
"scaffold/.coveragerc",
"scaffold/**/**",
"scaffold/**/**/*",
"api_gateway/*",
"live/*",
"stacks/*",
"stacks/**/*",
],
},
author="Guilherme Alves Pimenta",
author_email="guialvespimenta27@gmail.com",
description="Lambda Forge is a framework to help you create lambda functions following a pre-defined structure.",
entry_points={"console_scripts": ["forge=lambda_forge.forge:forge"]},
)