Trying to get sdist to work

This commit is contained in:
markm 2006-01-05 18:55:55 +00:00
parent 71450638bd
commit 2aab325e6e
1 changed files with 21 additions and 7 deletions

View File

@ -24,10 +24,24 @@
from distutils.core import setup
setup(name='Distutils',
version='0.1',
description='Python library for GUI automation and testing',
author='Mark Mc Mahon',
author_email='mark.m.mcmahon@gmail.com',
packages=['pywinauto'],
)
setup(name='pywinauto',
version='0.1',
description='Python library for GUI automation and testing',
url="no url",
author='Mark Mc Mahon',
author_email='mark.m.mcmahon@gmail.com',
packages = ["pywinauto"],
#py_modules=['application', 'test_application'],
license = "LGPL",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
],
)