summaryrefslogtreecommitdiff
path: root/setup.py
blob: 70f005c97902697edb34594e5217c6ba37e90ad2 (plain)
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
#!/usr/bin/env python

"""Distutils setup file"""

from setuptools import setup, find_packages

# Metadata
PACKAGE_NAME = "wsgiref"
PACKAGE_VERSION = "0.2"

setup(
    name=PACKAGE_NAME,
    version=PACKAGE_VERSION,

    description="WSGI (PEP 333) Reference Library",
    author="Phillip J. Eby",
    author_email="web-sig@python.org",
    license="PSF or ZPL",

    url="http://cheeseshop.python.org/pypi/wsgiref",

    long_description = open('README.txt').read(),
    test_suite  = 'test_wsgiref',
    packages    = ['wsgiref'],
)