Skip to content

Commit

Permalink
Updated to read __version__ from package
Browse files Browse the repository at this point in the history
  • Loading branch information
markm committed Mar 6, 2006
1 parent ed96cb3 commit d7292f1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@

from distutils.core import setup

import pywinauto


setup(name='pywinauto',
version='0.2.1',
description='Python library for GUI automation and testing',
url="http://sourceforge.net/projects/pywinauto",
author='Mark Mc Mahon',
author_email='[email protected]',
version = pywinauto.__version__,
description = 'Python library for GUI automation and testing',
url = "http://sourceforge.net/projects/pywinauto",
author = 'Mark Mc Mahon',
author_email = '[email protected]',

packages = ["pywinauto", "pywinauto.tests", "pywinauto.controls"],
#
Expand Down

0 comments on commit d7292f1

Please sign in to comment.