File: setup.py

package info (click to toggle)
strongwind 0.9-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 260 kB
  • ctags: 199
  • sloc: python: 1,446; makefile: 19
file content (23 lines) | stat: -rwxr-xr-x 801 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python

"""
Strongwind is a GUI test automation framework inspired by dogtail.

Strongwind is object-oriented and extensible. You can use Strongwind to build
object-oriented representations of your applications ("application wrappers"),
then reuse the application wrappers to quickly develop many test scripts.
Strongwind scripts generate a human-readable log that contains the action,
expected result and a screen shot of each step.  Most simple actions are logged
automatically.
"""

from distutils.core import setup

setup(name='Strongwind',
      version='0.9',
      description='GUI Test Automation Framework',
      author='Jonathan Tai',
      author_email='jon@tgpsolutions.com',
      url='http://www.medsphere.org/projects/strongwind/',
      packages=['strongwind'],
     )