Skip to content

Commit

Permalink
Adding setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
postrational committed Mar 17, 2018
1 parent 8535b9f commit 1660892
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Empty file modified rest_api_demo/app.py
100755 → 100644
Empty file.
28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
from setuptools import setup, find_packages

setup(
name='rest_api_demo',
version='1.0.0',
description='Boilerplate code for a RESTful API based on Flask-RESTPlus',
url='/~https://github.com/postrational/rest_api_demo',
author='Michal Karzynski',

classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],

keywords='rest restful api flask swagger openapi flask-restplus',

packages=find_packages(),

install_requires=['flask-restplus==0.9.2', 'Flask-SQLAlchemy==2.1'],
)

0 comments on commit 1660892

Please sign in to comment.