forked from nathancahill/flask-inputs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 681 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 681 Bytes
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
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='Flask-Inputs',
version='0.2.0',
description='Flask request data validation',
long_description=long_description,
url='http://pythonhosted.org/Flask-Inputs/',
author='Nathan Cahill',
author_email='nathan@nathancahill.com',
license='MIT',
keywords='flask validation wtforms',
packages=['flask_inputs'],
install_requires=['flask', 'wtforms', 'future'],
tests_require=['nose', 'coverage', 'jsonschema'],
)