forked from miLibris/flask-rest-jsonapi
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (38 loc) · 1.25 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
from setuptools import setup, find_packages
__version__ = "0.30.10"
setup(
name="flapison",
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/TMiguelT/flapison",
author="Michael Milton",
author_email="ttmigueltt@gmail.com",
license="MIT",
classifiers=[
"Framework :: Flask",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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.22.0",
"sqlalchemy",
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
extras_require={
"dev": ["pytest", "coveralls", "coverage", "pre-commit"],
"docs": "sphinx",
"abc": "def",
},
)