This repository was archived by the owner on Oct 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.27 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.27 KB
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
from codecs import open
from setuptools import find_packages
from setuptools import setup
setup(
name="WTForms-Appengine",
version="0.1",
url="http://github.com/wtforms/wtforms-appengine/",
license="BSD",
author="Thomas Johansson, James Crasta",
author_email="wtforms@simplecodes.com",
description="Appengine fields and form generation for WTForms",
long_description=open("README.rst", "r", "utf8").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD 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",
],
packages=find_packages(),
package_data={},
install_requires=["WTForms>=1.0.5"],
extras_require={},
test_suite="nose.collector",
tests_require=["nose"],
)