-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 887 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 887 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
25
26
27
28
29
30
import io
from os import path
from setuptools import setup, find_packages
MYDIR = path.abspath(path.dirname(__file__))
cmdclass = {}
ext_modules = []
setup(
name='lambda_parse_sqs',
version='0.2.1',
author="Marcelo Santino",
author_email="eu@marcelosantino.com.br",
description="Parse SQS messages from lambda triggered SQS subscription",
url='https://github.com/msantino/lambda-parse-sqs',
long_description=io.open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
setup_requires=[],
cmdclass=cmdclass,
ext_modules=ext_modules,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)