[Subversion] / PEAK-Rules / setup.py  

View of /PEAK-Rules/setup.py

Parent Directory | Revision Log
Revision: 2761 - (download) (as text)
Sun Apr 5 00:00:56 2015 UTC (8 years, 11 months ago) by pje
File size: 1245 byte(s)
Update required versions of BytecodeAssembler and DecoratorTools
#!/usr/bin/env python
"""Distutils setup file"""
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
PACKAGE_NAME = "PEAK-Rules"
PACKAGE_VERSION = "0.5a1"
PACKAGES = ['peak', 'peak.rules']

def get_description():
    # Get our long description from the documentation
    f = open('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="Generic functions and business rules support systems",
    long_description = get_description(),
    install_requires=[
        'BytecodeAssembler>=0.6-r2756','DecoratorTools>=1.9dev-r2727',
        'AddOns>=0.6', 'Extremes>=1.1',
    ],
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="ZPL 2.1",
    url="http://pypi.python.org/pypi/PEAK-Rules",
    download_url = "http://peak.telecommunity.com/snapshots/",
    test_suite = 'test_rules', tests_require='Importing',
    packages = PACKAGES,
    namespace_packages = ['peak'],
)

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help