final updates prior to release

This commit is contained in:
markm 2006-03-07 16:42:02 +00:00
parent b9e49e0391
commit fa1cb50b53
2 changed files with 14 additions and 4 deletions

View File

@ -1,6 +1,6 @@
0.x.x Small Release number - big changes
0.2.5 More refactoring, more tests
------------------------------------------------
xx-Mar-2006
07-Mar-2006
* Added wrapper classes for Menus and MenuItems this enabled cleaner
interaction with Menu's. It also gives more functionality - you can now
@ -30,8 +30,11 @@ xx-Mar-2006
* Updated the examples to follow changes to the code - and to make them a little
more robust.
* Added a new Controls Overview document page which lists all the actions on
all controls.
* Added more unit tests now up 174 to from 134
* Added more unit tests now up to 207 from 134 (added 68 tests)

View File

@ -28,10 +28,16 @@ import pywinauto
setup(name='pywinauto',
version = pywinauto.__version__,
description = 'Python library for GUI automation and testing',
description = 'pywinauto is a set of python modules to automate the Microsoft Windows GUI',
keywords = "windows automation gui GuiAuto"
url = "http://sourceforge.net/projects/pywinauto",
author = 'Mark Mc Mahon',
author_email = 'mark.m.mcmahon@gmail.com',
long_description = """
At it's simplest it allows you to send mouse and keyboard
actions to windows dialogs and controls, but It has support for more complex
controls also.
"""
packages = ["pywinauto", "pywinauto.tests", "pywinauto.controls"],
#
@ -47,6 +53,7 @@ setup(name='pywinauto',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)