We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b5461c + 63911f2 commit cae9278Copy full SHA for cae9278
setup.py
@@ -6,10 +6,12 @@
6
7
PROJECT_ROOT = pathlib.Path(__file__).parent
8
README = (PROJECT_ROOT / 'README.md').read_text()
9
+sql = ['peewee-migrate>=1.1.6']
10
+mongo = ['flask-mongoengine']
11
12
setup(
13
name='freenit',
- version='0.0.32',
14
+ version='0.1.0',
15
description='REST API framework based on Flask-Smorest',
16
long_description=README,
17
long_description_content_type='text/markdown',
@@ -47,8 +49,12 @@
47
49
'flask-jwt-extended>=3.24.1',
48
50
'flask-security>=3.0.0',
51
'flask-smorest>=0.18.2',
- 'peewee-migrate>=1.1.6',
52
],
53
+ extras_require={
54
+ 'all': sql + mongo,
55
+ 'sql': sql,
56
+ 'mongo': mongo,
57
+ },
58
include_package_data=True,
59
package_data={
60
'': [
0 commit comments