forked from sivel/flask-lambda
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 849 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 849 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
setup(
name='flask-lambda-python36',
version='0.1.1',
description=('Python3.6+ module to make Flask compatible with AWS Lambda'),
keywords='flask aws amazon lambda',
author='Andrew Griffiths',
author_email='mail@andrewgriffithsonline.com',
url='https://github.com/techjacker/flask-lambda',
license='Apache License, Version 2.0',
py_modules=['flask_lambda'],
install_requires=['Flask>=0.10'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Environment :: Console',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
]
)