[Subversion] / wsgiref / setup.py  

View of /wsgiref/setup.py

Parent Directory | Revision Log
Revision: 246 - (download) (as text)
Tue Oct 5 20:13:57 2004 UTC (19 years, 6 months ago) by pje
File size: 538 byte(s)
Created initial "setup and test" shell for 'wsgiref' library.
#!/usr/bin/env python

"""Distutils setup file"""

from setuptools import setup, find_packages

# Metadata
PACKAGE_NAME = "wsgiref"
PACKAGE_VERSION = "0.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  = 'wsgiref.tests.test_suite',
    package_dir = {'':'src'},
    packages    = find_packages('src'),
)


cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help