#!/usr/bin/env python """Distutils setup file""" import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages # Metadata PACKAGE_NAME = "wsgiref" PACKAGE_VERSION = "0.1" setup( name=PACKAGE_NAME, version=PACKAGE_VERSION, description="WSGI (PEP 333) Reference Library", author="Phillip J. Eby", author_email="peak@eby-sarna.com", license="PSF or ZPL", url="http://www.python.org/peps/pep-0333.html", test_suite = 'test_wsgiref', packages = ['wsgiref'], )