-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 813 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
from setuptools import setup
setup(
name='WTFormValidation',
version='1.0.0',
url='https://github.com/sc0tt/WTFormValidation',
description='The missing link between WTForms and http://formvalidation.io',
license='MIT',
author='Scott Adie',
author_email='[email protected]',
packages=["wtformvalidation"],
include_package_data=True,
platforms='any',
install_requires=[
'WTForms',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules']
)