diff --git a/README.md b/README.md index 8fea4c4..876e949 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ Some reasons that you may want to use this framework: - You are open to trying something new and contributing to a framework - You want to develop a new reactive service to your existing flask app -This framework is at ***development stage***. -API is not guaranteed and ***will*** change often. +This framework is at ***beta testing stage***. +API is not guaranteed and ***may*** change. Documentations: [readthedocs](https://flask-boiler.readthedocs.io/) diff --git a/setup.py b/setup.py index af3d79b..a9eb19f 100644 --- a/setup.py +++ b/setup.py @@ -6,14 +6,14 @@ setuptools.setup( name="flask_boiler", # Alpha release - version="0.0.1.b1", + version="0.0.1.b2", author="Bill Rao", author_email="billrao@me.com", description="Build flask project with Firebase ", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/billyrrr/flask-boiler", - download_url="https://github.com/billyrrr/flask-boiler/archive/v0.0.1.b1" + download_url="https://github.com/billyrrr/flask-boiler/archive/v0.0.1.b2" ".tar.gz", keywords=["firebase", "firestore", "ORM", "flasgger", "flask", "backend", "nosql"], @@ -42,6 +42,8 @@ "apispec>=2.0.2", "flasgger", "dictdiffer", - "celery" + "celery", + "flask-socketio", + "iso8601" ], )