-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
47 lines (42 loc) · 1.38 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 *-*
import os
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
version = '0.0.3+'
readme_content = ''
try:
f = open('README.rst')
readme_content = f.read()
f.close()
except:
pass
setup(
name='wtforms-tornado',
version=version,
url='https://github.com/puentesarrin/wtforms-tornado',
description='WTForms extensions for Tornado.',
long_description=readme_content,
author='Jorge Puente Sarrín',
author_email='[email protected]',
packages=['wtforms_tornado'],
keywords=['wtforms', 'tornado', 'validation'],
install_requires=['tornado', 'wtforms'],
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'],
)