setup.py
author Alexander Solovyov <piranha@piranha.org.ua>
Sun, 27 Sep 2009 23:24:44 +0300
changeset 94 0178aca18a6d
parent 75 2782b2406ba8
child 95 5d92ba281fe8
permissions -rwxr-xr-x
backward incompatible change: require argv=sys.argv[1:] for @wrapped command to parse command line

#!/usr/bin/env python

import os
from distutils.core import setup
import opster

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

def desc():
    info = read('README')
    try:
        return info + '\n\n' + read('docs/changelog.rst')
    except IOError:
        # no docs
        return info

setup(
    name = 'opster',
    description = 'command line parsing speedster',
    long_description = desc(),
    license = 'BSD',
    version = opster.__version__,
    author = opster.__author__,
    author_email = opster.__email__,
    url = 'http://hg.piranha.org.ua/opster/',
    classifiers = [
        'Development Status :: 4 - Beta',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Software Development',
        ],
    py_modules = ['opster'],
    platforms='any',
    )