[Subversion] / CLI-Tools / setup.py  

View of /CLI-Tools/setup.py

Parent Directory | Revision Log
Revision: 2509 - (download) (as text)
Sat Mar 8 01:29:04 2008 UTC (16 years, 1 month ago) by pje
File size: 1150 byte(s)
Starting work on CLI-Tools package -- spinoff of the
old PEAK 'options' framework + rewrite of 'commands'
#!/usr/bin/env python
"""Distutils setup file"""

import ez_setup
ez_setup.use_setuptools()
from setuptools import setup

# Metadata
PACKAGE_NAME = "CLI-Tools"
PACKAGE_VERSION = "0.5"
PACKAGES = ['peak', 'peak.cli']

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="Plugin-capable cmdline apps w/option parsing, for wx, Twisted, and more",
    long_description = open('README.txt').read(), # get_description(),
    install_requires=['Plugins', 'AddOns', 'Trellis', 'DecoratorTools'],
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="PSF or ZPL",
    url="http://pypi.python.org/pypi/CLI-Tools",
    test_suite = 'test_cli_tools',
    packages = PACKAGES,
    namespace_packages = ['peak'],
)


cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help