-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1.04 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
from setuptools import setup
setup(
# Flask-RIP is already taken
name='flask-restinpeace',
version='1.4.0',
description=('Create Flask REST APIs in peace.'),
long_description=('Create Flask REST APIs in peace.'),
url='https://github.com/kynikos/lib.py.flask-rip',
author='Dario Giovannetti',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
],
keywords='flask rest restful api marshal marshmallow',
py_modules=["flask_rip"],
)