setup.py
author Alexander Solovyov <piranha@piranha.org.ua>
Fri, 24 Jul 2009 14:26:48 +0300
changeset 54 52bb38d76d79
parent 52 5839699b1c01
child 55 e8866635cf2f
permissions -rwxr-xr-x
Added tag 0.9.2 for changeset 1d0173e1b412

#!/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()

setup(
    name = 'finaloption',
    description = 'command line parsing done right',
    long_description = read('README') + '\n\n' + read('docs/changelog.rst'),
    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'],
    )