[Subversion] / WebHaiku / setup.py  

View of /WebHaiku/setup.py

Parent Directory | Revision Log
Revision: 2443 - (download) (as text)
Sat Dec 22 16:19:03 2007 UTC (16 years, 3 months ago) by pje
File size: 1127 byte(s)
Use Contextual for database services
#!/usr/bin/env python
"""Distutils setup file"""

#import ez_setup
#ez_setup.use_setuptools()
from setuptools import setup

# Metadata
PACKAGE_NAME = "WebHaiku"
PACKAGE_VERSION = "0.5"

def get_description():
    # Get our long description from the documentation
    f = file('README.txt')
    lines = []
    for line in f:
        if not line.strip():
            break     # skip to first blank line
    for line in f:
        if line.startswith('.. contents::'):
            break     # read to table of contents
        lines.append(line)
    f.close()
    return ''.join(lines)

setup(
    name=PACKAGE_NAME,
    version=PACKAGE_VERSION,
    description='A class-oriented, egg-savvy, "ultralite" WSGI framework',
    long_description = get_description(),

    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="PSF or ZPL",
    #url="...",
    test_suite = 'web_haiku',
    py_modules = ['web_haiku'],

    install_requires = ['wsgiref>=0.1', 'Contextual>=0.7a1dev'],


    entry_points = {
        'wsgirun.apps': ['/ = web_haiku:TestContainer']
    }
    
)





































cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help