forked from sivel/flask-lambda
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix imports by refactoring package structure - version 0.1.4
- Loading branch information
Jochen Van de Velde
committed
Jul 8, 2019
1 parent
caee16a
commit 3b4ee8f
Showing
5 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from flask_lambda.util.object_utils import get_nested |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
from setuptools import setup | ||
from setuptools import setup, find_packages | ||
|
||
|
||
with open('README.rst') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='flask-lambda-support', | ||
version='0.1.2', | ||
version='0.1.4', | ||
description='Python 3.6+ module to make Flask compatible with AWS Lambda', | ||
long_description=long_description, | ||
keywords='flask aws amazon lambda', | ||
author='Jochen Van de Velde', | ||
author_email='[email protected]', | ||
url='https://github.com/becloudway/flask-lambda', | ||
license='Apache License, Version 2.0', | ||
packages=find_packages(), | ||
py_modules=['flask_lambda'], | ||
install_requires=['Flask>=0.10'], | ||
classifiers=[ | ||
|
This file was deleted.
Oops, something went wrong.