packaging changes, pre-emptive version bump

This commit is contained in:
adustman
2002-04-28 19:55:08 +00:00
parent f1905e4605
commit 0b5cdd48b0
3 changed files with 35 additions and 3 deletions

View File

@ -17,6 +17,9 @@ thread_safe_library = YES
# do, please mail me the configuration for your platform. Don't
# forget to include the value of sys.platform and os.name.
name = "MySQL-%s" % os.path.basename(sys.executable)
version = "0.9.2c1"
mysqlclient = thread_safe_library and "mysqlclient_r" or "mysqlclient"
# include files and library locations should cover most platforms
@ -91,8 +94,8 @@ MySQLdb. MySQLdb is free software.
"""
setup (# Distribution meta-data
name = "MySQL-python",
version = "0.9.2b2",
name = name,
version = version,
description = "An interface to MySQL",
long_description=long_description,
author = "Andy Dustman",