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="FEComponent", version="0.1", description="A Webware Component for using FormEncode", long_description="""\ FEComponent is glue between FormEncode and Webware servlets, adding method dispatching and automatic filling of HTML forms and error messages. """, classifiers=["Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Python Software Foundation License", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ], author="Michel Thadeu Sabchuk", author_email="michelts@gmail.com", url="http://svn.webwareforpython.org/FEComponent/trunk", license="PSF", packages=["FEComponent", "FEComponent.Examples", "FEComponent.Examples.lib"], )