setup.py
author Alexander Solovyov <piranha@piranha.org.ua>
Mon, 13 Jul 2009 19:13:19 +0300
changeset 38 d64102e06c34
parent 36 0cb832d5f1a9
child 39 c6705e908794
permissions -rw-r--r--
hint about adding option lists

#!/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 arguments parser',
    long_description = read('README'),
    version = finaloption.__version__,
    author = finaloption.__author__,
    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 Languge :: Python',
        'Topic :: Software Development',
        ],
    py_modules = ['finaloption'],
    )