Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
billyrrr committed Sep 1, 2019
1 parent eb62a90 commit 05798a7
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,39 @@

setuptools.setup(
name="flask_boiler",
version="0.0.1",
# Alpha release
version="0.0.1a1",
author="Bill Rao",
author_email="[email protected]",
description="Build flask project with Firebase ",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pypa/sampleproject",
url="https://github.com/billyrrr/flask-boiler",
keywords=["firebase", "firestore", "ORM", "flasgger", "flask",
"backend", "nosql"],
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',

'Intended Audience :: Developers',

"Programming Language :: Python :: 3",

"License :: OSI Approved :: MIT License",

"Operating System :: OS Independent",
],
install_requires=[
'Flask>=0.10',
'google-auth==1.5.1',
'google-cloud-datastore',
'google-cloud-datastore>=1.4.0',
'google-api-python-client',
'firebase-admin',
'flask_restful'
'flask_restful',
# TODO: add version constraint
'marshmallow',
"inflection",
"apispec>=2.0.2",
"flasgger"
],
)

0 comments on commit 05798a7

Please sign in to comment.