-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
35 lines (29 loc) · 1.03 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
"""Setup lambda_proxy."""
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
extra_reqs = {"test": ["pytest", "pytest-cov", "mock"]}
setup(
name="lambda-proxy",
version="5.2.1",
description=u"Simple AWS Lambda proxy to handle API Gateway request",
long_description=readme,
long_description_content_type="text/markdown",
python_requires=">=3",
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="AWS-Lambda API-Gateway Request Proxy",
author=u"Vincent Sarago",
author_email="[email protected]",
url="https://github.com/vincentsarago/lambda-proxy",
license="BSD",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
zip_safe=False,
extras_require=extra_reqs,
)