forked from d-ganchar/flask_request_validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 962 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
25
26
27
28
29
30
31
import io
from setuptools import setup
from os import path
current_path = path.abspath(path.dirname(__file__))
with io.open('README.rst', 'rt', encoding='utf8') as f:
long_description = f.read()
setup(
name='flask_request_validator',
version='3.0.1',
description='Flask request data validation',
long_description=long_description,
url='https://github.com/d-ganchar/flask_request_validator',
author='Danila Ganchar',
author_email='[email protected]',
license='MIT',
keywords='flask request validation',
packages=['flask_request_validator'],
install_requires=['flask'],
tests_require=['nose'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Flask',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)