Skip to content

Commit

Permalink
Fix imports by refactoring package structure - version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jochen Van de Velde committed Jul 8, 2019
1 parent caee16a commit 3b4ee8f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion flask_lambda.py → flask_lambda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from io import StringIO

from flask import Request
from util import get_nested
from flask_lambda.util import get_nested


__version__ = '0.1.2'
Expand Down
1 change: 1 addition & 0 deletions flask_lambda/util/__init__.py
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.
5 changes: 3 additions & 2 deletions setup.py
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=[
Expand Down
1 change: 0 additions & 1 deletion util/__init__.py

This file was deleted.

0 comments on commit 3b4ee8f

Please sign in to comment.