[Subversion] / simplegeneric / setup.py  

View of /simplegeneric/setup.py

Parent Directory | Revision Log
Revision: 2241 - (download) (as text)
Fri Oct 6 00:43:40 2006 UTC (17 years, 6 months ago) by pje
File size: 1006 byte(s)
Create "simplegeneric" module to do trivial single-dispatch generic 
functions for Python 2.4 and up, without any dependencies and in the 
smallest practical piece of code.
#!/usr/bin/env python
"""Distutils setup file"""

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

# Metadata
PACKAGE_NAME = "simplegeneric"
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="Simple generic functions (ala len(), pickle.dump(), etc.)",
    long_description = get_description(),
    url = "http://cheeseshop.python.org/pypi/simplegeneric",
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="PSF or ZPL",
    test_suite = 'simplegeneric.test_suite',
    py_modules = ['simplegeneric'],
)


cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help