from distutils.core import setup import warnings warnings.filterwarnings("ignore", "Unknown distribution option") import sys # patch distutils if it can't cope with the "classifiers" keyword if sys.version < '2.2.3': from distutils.dist import DistributionMetadata DistributionMetadata.classifiers = None DistributionMetadata.download_url = None setup(name="FormEncode", version="0.1", description="Form validation and generation package", long_description="""\ FormEncode validates and converts input and output for HTTP and other sources. It can also create forms based on these validation schemas. Complex, context-sensitive, and extensible schemas are supported. """, classifiers=["Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Python Software Foundation License", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules", ], author="Ian Bicking", author_email="ianb@colorstudy.com", url="http://formencode.org", license="PSF", packages=["formencode"], package_dir={'formencode': 'src'}, download_url="@@", ) # Send announce to: # python-announce@python.org # python-list@python.org