-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 942 Bytes
/
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
from setuptools import setup, find_packages
LONG_DESCRIPTION = open("README.md").read() # pylint:disable=consider-using-with,unspecified-encoding
setup(
name="aws-dynamodb-parser",
version="0.1.3",
description="AWS DynamoDB utility for parsing DynamoDB responses",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/gridsmartercities/aws-dynamodb-parser",
author="Grid Smarter Cities",
author_email="open-source@gridsmartercities.com",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"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")),
zip_safe=False
)