-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (19 loc) · 796 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
setup(
name='rest_api',
version='1.0.0',
description='Boilerplate code for a RESTful API based on Flask-RESTPlus',
url='https://github.com/TRUSTMEIMJEDI/YoutubeFlaskApi',
author='Marcin Friedrich',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='rest restful api flask swagger openapi flask-restplus',
packages=find_packages(),
install_requires=['flask-restplus==0.12.1', 'Flask-SQLAlchemy==2.4.0'],
)