forked from formencode/formencode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.36 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
import sys
from setuptools import setup
version = '1.2.4'
if not '2.3' <= sys.version < '3.0':
raise ImportError('Python version not supported')
tests_require = ['nose', 'pycountry', 'pyDNS']
if sys.version < '2.5':
tests_require.append('elementtree')
setup(name="FormEncode",
version=version,
#requires_python=]'>=2.3,<3', # PEP345
description="HTML form validation, generation, and conversion package",
long_description="""\
FormEncode validates and converts nested structures. It allows for
a declarative form of defining the validation, and decoupled processes
for filling and generating forms.
The official repo is at BitBucket: https://bitbucket.org/formencode/official-formencode/
""",
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
author="Ian Bicking",
author_email="[email protected]",
url="http://formencode.org",
license="PSF",
zip_safe=False,
packages=["formencode", "formencode.util"],
include_package_data=True,
test_suite='nose.collector',
tests_require=tests_require,
)