Update of /cvsroot/pywin32/pywin32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31618
Modified Files:
setup_win32all.py
Log Message:
Add an explicit title, and tweak a few other description strings.
Index: setup_win32all.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/setup_win32all.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** setup_win32all.py 5 Feb 2004 23:39:50 -0000 1.12
--- setup_win32all.py 7 Feb 2004 01:07:59 -0000 1.13
***************
*** 1,2 ****
--- 1,3 ----
+ build_number=200
"""distutils setup-script for win32all
***************
*** 914,920 ****
dist = setup(name="pywin32",
! version="200",
description="Python for Window Extensions",
! long_description="Includes access to much of the Win32 API, the\n"
"ability to create and use COM objects, and the\n"
"Pythonwin environment.",
--- 915,922 ----
dist = setup(name="pywin32",
! version=build_number,
description="Python for Window Extensions",
! long_description="Python extensions for Microsoft Windows\n"
! "Provides access to much of the Win32 API, the\n"
"ability to create and use COM objects, and the\n"
"Pythonwin environment.",
***************
*** 930,933 ****
--- 932,936 ----
{"install_script": "pywin32_postinstall.py",
"pre_install_script": "pywin32_preinstall.py",
+ "title": "pywin32 extensions (build %s)" % (build_number,),
},
},
|