[Subversion] / BytecodeAssembler / setup.py  

View of /BytecodeAssembler/setup.py

Parent Directory | Revision Log
Revision: 2646 - (download) (as text)
Tue Aug 3 03:26:30 2010 UTC (13 years, 8 months ago) by pje
File size: 1174 byte(s)
Revert licenses to ZPL 2.1; drop 'dev' tags from intermediate releases
#!/usr/bin/env python
"""Distutils setup file"""
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup

# Metadata
PACKAGE_NAME = "BytecodeAssembler"
PACKAGE_VERSION = "0.6"
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,
    url = "http://pypi.python.org/pypi/BytecodeAssembler",
    description='Generate Python code objects by "assembling" bytecode'
        ' (Now includes a functional/AST-oriented API, too!)',
    long_description = get_description(),
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="ZPL 2.1",
    install_requires = ['DecoratorTools>=1.2', 'SymbolType>=1.0'],
    test_suite = 'test_assembler',
    packages = PACKAGES,
    namespace_packages = PACKAGES,
)


cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help