-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
24 lines (23 loc) · 1008 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
setup(
name='flask-io',
version='1.14.3',
packages=['flask_io'],
url='https://github.com/viniciuschiele/flask-io',
license='MIT',
author='Vinicius Chiele',
author_email='[email protected]',
description='Flask-IO is a library for parsing Flask request arguments into parameters and for serialization of complex objects into Flask response.',
keywords=['flask', 'rest', 'parse', 'encode', 'decode', 'request', 'json', 'marshmallow'],
install_requires=['flask>=2,<3', 'python-dateutil>=2.4.2', 'marshmallow>=3,<4'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython'
]
)