[Subversion] / DecoratorTools / setup.py  

View of /DecoratorTools/setup.py

Parent Directory | Revision Log
Revision: 2613 - (download) (as text)
Fri Jun 11 00:01:46 2010 UTC (13 years, 9 months ago) by pje
File size: 1125 byte(s)
Experimental enhanced trace restoration support for Python 2.6;
needs testing on 2.6!
#!/usr/bin/env python
"""Distutils setup file"""

import ez_setup
ez_setup.use_setuptools()
from setuptools import setup

# Metadata
PACKAGE_NAME = "DecoratorTools"
PACKAGE_VERSION = "1.9"
PACKAGES = ['peak', 'peak.util']

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="Class, function, and metaclass decorators -- even in Python 2.3"
                " (now with source debugging for generated code)!",
    long_description = get_description(),
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="PSF or ZPL",
    url="http://cheeseshop.python.org/pypi/DecoratorTools",
    test_suite = 'test_decorators',
    packages = PACKAGES,
    namespace_packages = PACKAGES,
)


cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help