forked from miLibris/flask-rest-jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (41 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
__version__ = '0.30.1'
setup(
name="Flask-REST-JSONAPI",
version=__version__,
description='Flask extension to create REST web api according to JSONAPI 1.0 specification with Flask, Marshmallow \
and data provider of your choice (SQLAlchemy, MongoDB, ...)',
url='https://github.com/miLibris/flask-rest-jsonapi',
author='miLibris API Team',
author_email='[email protected]',
license='MIT',
classifiers=[
'Framework :: Flask',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
keywords='web api rest jsonapi flask sqlalchemy marshmallow',
packages=find_packages(exclude=['tests']),
zip_safe=False,
platforms='any',
install_requires=[
'six',
'Flask>=0.11',
'marshmallow>=3.1.0',
'marshmallow_jsonapi>=0.11.0',
'sqlalchemy'
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
extras_require={
'dev': [
'pytest',
'coveralls',
'coverage'
],
'docs': 'sphinx'
}
)