Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mekanix committed Mar 18, 2020
1 parent 3b5461c commit 63911f2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@

PROJECT_ROOT = pathlib.Path(__file__).parent
README = (PROJECT_ROOT / 'README.md').read_text()
sql = ['peewee-migrate>=1.1.6']
mongo = ['flask-mongoengine']

setup(
name='freenit',
version='0.0.32',
version='0.1.0',
description='REST API framework based on Flask-Smorest',
long_description=README,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -47,8 +49,12 @@
'flask-jwt-extended>=3.24.1',
'flask-security>=3.0.0',
'flask-smorest>=0.18.2',
'peewee-migrate>=1.1.6',
],
extras_require={
'all': sql + mongo,
'sql': sql,
'mongo': mongo,
},
include_package_data=True,
package_data={
'': [
Expand Down

0 comments on commit 63911f2

Please sign in to comment.