[svn-commits] r50 - drivers/python/trunk

crogr01 at ingres.com crogr01 at ingres.com
Thu Jun 5 10:33:38 PDT 2008


Author: crogr01
Date: 2008-06-05 10:33:37 -0700 (Thu, 05 Jun 2008)
New Revision: 50

Modified:
   drivers/python/trunk/setup.py
Log:
Updated for 2.0.1 release, including Trove tags

Modified: drivers/python/trunk/setup.py
===================================================================
--- drivers/python/trunk/setup.py	2008-05-08 13:12:54 UTC (rev 49)
+++ drivers/python/trunk/setup.py	2008-06-05 17:33:37 UTC (rev 50)
@@ -1,6 +1,6 @@
 #!/bin/env python
 """
-Copyright (c) 2005-2006 Ingres Corporation. All Rights Reserved.
+Copyright (c) 2005-2008 Ingres Corporation. All Rights Reserved.
 """
 
 from distutils.core import setup, Extension
@@ -68,6 +68,11 @@
         Incremented version to 1.9.6.
     09-Aug-2006 (Ralph.Loen at ingres.com)
         Incremented version to 2.0.0.
+    05-May-2008 (grant.croker at ingres.com)
+        Incremented version to 2.0.1.
+    06-May-2008 (grant.croker at ingres.com)
+        Added Trove tags, the trove classification for distutils is documented in PEP 301
+        http://www.python.org/dev/peps/pep-0301/
 
  Known Issues
 
@@ -128,7 +133,7 @@
 
 # version of the driver
 # change only this value when incrementing the driver level
-dbiversion='2.0.0'
+dbiversion='2.0.1'
 dbiversion_str='"""%s"""' % (dbiversion)
 
 # Default build flags, libraries, etc.
@@ -173,13 +178,41 @@
     library_dirs=[ii_system_lib],
     libraries=libraries)
 
-setup(name="ingresdbi",
+setup(
+    name="ingresdbi",
     version=dbiversion,
     url="http://ingres.com",
     author="Ralph Loen",
     author_email="Ralph.Loen at ingres.com",
+    maintainer="Grant Croker",
+    maintainer_email="grant.croker at ingres.com",
     license="GPL",
     description="Ingres DBI 2.0 Python Driver",
-    long_description="Ingres DBI 2.0 Python driver offers access to Ingres databases, Ingres gateways, and EDBC servers.",
-    ext_modules = ([ingresdbi]))
+    long_description="""
+ingresdbi is a C based interface to the Ingres_ DBMS server, 
+Ingres Star, Enterprise Access Gateways and EDBC servers. The
+interface is compliant with Python database API version 2.0 
+[PEP-0249].
+ 
+ingresdbi is licensed under the `GPL v2`_ 
 
+.. _Ingres: http://www.ingres.com/
+.. _`GPL v2`: http://www.gnu.org/licenses/gpl-2.0.html
+.. [PEP-0249] http://www.python.org/peps/pep-0249.html""",
+    ext_modules = ([ingresdbi]),
+    classifiers=[
+        'Classifier: Development Status :: 5 - Production/Stable',
+        'Classifier: Environment :: Other Environment',
+        'Classifier: License :: OSI Approved :: GNU General Public License (GPL)',
+        'Classifier: Operating System :: Microsoft :: Windows :: Windows NT/2000',
+        'Classifier: Operating System :: OS Independent',
+        'Classifier: Operating System :: POSIX',
+        'Classifier: Operating System :: POSIX :: Linux',
+        'Classifier: Operating System :: Unix',
+        'Classifier: Programming Language :: C',
+        'Classifier: Programming Language :: Python',
+        'Classifier: Topic :: Database',
+        'Classifier: Topic :: Database :: Database Engines/Servers',
+        ],
+    download_url="http://ingres.com/downloads/connectivity-resources.php",
+    ),




More information about the svn-commits mailing list