setup.py
author Alexander Solovyov <piranha@piranha.org.ua>
Fri, 31 Jul 2009 09:37:17 +0300
changeset 60 1d27eceed4d2
parent 55 e8866635cf2f
child 75 2782b2406ba8
permissions -rwxr-xr-x
ability to hide commands from listing

#!/usr/bin/env python

import os
from distutils.core import setup
import finaloption

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 = 'finaloption',
    description = 'command line parsing done right',
    long_description = desc(),
    license = 'BSD',
    version = finaloption.__version__,
    author = finaloption.__author__,
    author_email = finaloption.__email__,
    url = 'http://hg.piranha.org.ua/finaloption/',
    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 = ['finaloption'],
    platforms='any',
    )