forked from iwpnd/fastapi-aws-lambda-example
-
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) · 610 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 610 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
from setuptools import setup
packages = []
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
setup(
name="example_app",
version="0.1.0",
description="example api to be deployed to aws lambda",
url="http://github.com/iwpnd/fastapi-aws-lambda-example",
author="probably you",
author_email="probably@you.pw",
license="MIT",
include_package_data=True,
install_requires=requirements,
packages=packages,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
],
)