-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (27 loc) · 1.07 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
from setuptools import setup, find_packages
LONG_DESCRIPTION = open("README.md").read()
setup(name="aws-lambda-decorators",
version="0.53",
description="A set of python decorators to simplify aws python lambda development",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/gridsmartercities/aws-lambda-decorators",
author="Grid Smarter Cities",
author_email="open-source@gridsmartercities.com",
license="MIT",
classifiers=["Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English"
],
keywords="aws lambda decorator",
packages=find_packages(exclude=("tests", "examples",)),
install_requires=[
"boto3",
"PyJWT",
"schema"
],
zip_safe=False
)