-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
29 lines (27 loc) · 922 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup file for apispec_flask_restful"""
from setuptools import setup, find_packages
setup(
name="apispec-flask-restful",
version="0.2",
author="theirix",
author_email="theirix@gmail.com",
description=(
"Flask-RESTful plugin for apispec"),
license="MIT",
keywords='apispec swagger openapi specification documentation spec rest api',
url="https://github.com/theirix/apispec-flask-restful",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Programming Language :: Python",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
packages=find_packages(exclude=['tests', 'tests.*']),
entry_points={},
install_requires=['apispec[yaml]>=1.0.0', 'Flask-RESTful'],
tests_require=['pytest', 'pytest-cov'],
test_suite='tests'
)