-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 884 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
from setuptools import setup, find_packages
requirements=["flask_restplus", "flask", "flask_cors", "werkzeug"]
setup(
name = 'swagger_ui',
packages = find_packages(),
version = '0.1.2',
license='GPL-3.0',
description = 'An extension to flask_restplus that can convert back-end objects into APIs',
author = 'Alireza Davoudi',
author_email = '[email protected]',
url = 'https://github.com/Faraadid/swagger_ui',
download_url = 'https://github.com/Faraadid/swagger_ui/archive/v0.1.2.tar.gz',
keywords = ['flask_restplus', 'swagger', 'swagger ui'],
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
)