[Subversion] / Trellis / setup.py  

View of /Trellis/setup.py

Parent Directory | Revision Log
Revision: 2436 - (download) (as text)
Fri Nov 30 22:46:43 2007 UTC (16 years, 5 months ago) by pje
File size: 1236 byte(s)
The new algorithm lands - version bump to 0.6a1dev.
Too many changes to list!
#!/usr/bin/env python
"""Distutils setup file"""
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup

# Metadata
PACKAGE_NAME = "Trellis"
PACKAGE_VERSION = "0.6a1"
PACKAGES = ['peak', 'peak.events']
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,
    url = "http://peak.telecommunity.com/DevCenter/Trellis",
    description='A simple "untwisted" approach to event-driven programming',
    long_description = get_description(),
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="PSF or ZPL",
    test_suite = 'test_trellis',
    packages = PACKAGES,
    namespace_packages = PACKAGES,
    install_requires = [
        'SymbolType>=1.0', 'AddOns>=0.6', 'DecoratorTools>=1.6',
        'Contextual>=0.7a1dev-r2410,==dev', 'Extremes>=1.1',
    ], tests_require = ['mocker>=0.9.2']
)

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help