#!/usr/bin/env python

VERSION = '0.3'

long_description = """
guitest is a collection of helpers to test GUI applications written in python.
pyGTK support is most mature, and support for other toolkits is in progress.
The library allows testing of modal dialogs and recursive mainloop invocations
while preventing the windows from being shown during test runs.  Arbitrary
classes and methods can be overriden or call loggers attached.
"""

classifiers = ["Development Status :: 4 - Beta",
               "Intended Audience :: Developers",
               "License :: OSI Approved :: MIT License",
               "Operating System :: POSIX",
               "Programming Language :: Python",
               "Topic :: Software Development :: Testing"]


import distutils.core


def main():
    distutils.core.setup(
            name='guitest',
            version=VERSION,
            description='library for unit-testing Python GUI applications',
            long_description=long_description,
            classifiers=classifiers,
            url='http://gintas.pov.lt/guitest',
            data_files=[('share/doc/python-guitest', ['README', 'LICENSE'])],
            packages=['guitest'],
            author="Gintautas Miliauskas",
            author_email="gintas@pov.lt",
            platforms='POSIX',
            license='MIT',
            )


if __name__ == '__main__':
    main()

