Add all metadata into the setup configuration script.
This commit is contained in:
parent
76c10a9e73
commit
6d1d519584
20
PKG-INFO
20
PKG-INFO
|
@ -1,20 +0,0 @@
|
||||||
Metadata-Version: 1.0
|
|
||||||
Name: cx_Oracle
|
|
||||||
Version: HEAD
|
|
||||||
Home-page: http://cx-oracle.sourceforge.net
|
|
||||||
Author: Anthony Tuininga
|
|
||||||
Author-email: anthony.tuininga@gmail.com
|
|
||||||
Maintainer: Anthony Tuininga
|
|
||||||
Maintainer-email: anthony.tuininga@gmail.com
|
|
||||||
Summary: Python interface to Oracle
|
|
||||||
Description: Python interface to Oracle conforming to the Python DB API 2.0 specification.
|
|
||||||
See http://www.python.org/topics/database/DatabaseAPI-2.0.html.
|
|
||||||
Keywords: Oracle
|
|
||||||
Classifier: Development Status :: 6 - Mature
|
|
||||||
Classifier: Intended Audience :: Developers
|
|
||||||
Classifier: License :: OSI Approved :: Python Software Foundation License
|
|
||||||
Classifier: Natural Language :: English
|
|
||||||
Classifier: Operating System :: OS Independent
|
|
||||||
Classifier: Programming Language :: C
|
|
||||||
Classifier: Programming Language :: Python
|
|
||||||
Classifier: Topic :: Database
|
|
16
setup.py
16
setup.py
|
@ -212,6 +212,17 @@ if sys.platform == "win32" and sys.version_info[:2] >= (2, 5):
|
||||||
|
|
||||||
commandClasses["bdist_wininst"] = bdist_wininst
|
commandClasses["bdist_wininst"] = bdist_wininst
|
||||||
|
|
||||||
|
# define classifiers for the package index
|
||||||
|
classifiers = [
|
||||||
|
"Development Status :: 6 - Mature",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: Python Software Foundation License",
|
||||||
|
"Natural Language :: English",
|
||||||
|
"Operating System :: OS Independent",
|
||||||
|
"Programming Language :: C",
|
||||||
|
"Programming Language :: Python",
|
||||||
|
"Topic :: Database"
|
||||||
|
]
|
||||||
|
|
||||||
# setup the extension
|
# setup the extension
|
||||||
extension = Extension(
|
extension = Extension(
|
||||||
|
@ -246,5 +257,8 @@ setup(
|
||||||
author = "Anthony Tuininga",
|
author = "Anthony Tuininga",
|
||||||
author_email = "anthony.tuininga@gmail.com",
|
author_email = "anthony.tuininga@gmail.com",
|
||||||
url = "http://cx-oracle.sourceforge.net",
|
url = "http://cx-oracle.sourceforge.net",
|
||||||
ext_modules = [extension])
|
ext_modules = [extension],
|
||||||
|
keywords = "Oracle",
|
||||||
|
license = "Python Software Foundation License",
|
||||||
|
classifiers = classifiers)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue