Changeset: 0e6b50f7dacd for python-monetdb URL: http://dev.monetdb.org/hg/python-monetdb?cmd=changeset;node=0e6b50f7dacd Modified Files: PKG-INFO pymonetdb/__init__.py setup.py Branch: default Log Message:
Fixing up version and license. diffs (73 lines): diff --git a/PKG-INFO b/PKG-INFO --- a/PKG-INFO +++ b/PKG-INFO @@ -1,28 +1,17 @@ Metadata-Version: 1.1 Name: pymonetdb -Version: 11.19.3 +Version: 1.0 Summary: Native MonetDB client Python API Home-page: http://www.monetdb.org/ Author: MonetDB BV Author-email: [email protected] -License: UNKNOWN +License: MPLv2.0 Download-URL: http://dev.monetdb.org/downloads/sources/Oct2014/python2-monetdb-11.19.3.tar.gz -Description: .. The contents of this file are subject to the MonetDB Public License - .. Version 1.1 (the "License"); you may not use this file except in - .. compliance with the License. You may obtain a copy of the License at - .. http://www.monetdb.org/Legal/MonetDBLicense +Description: .. This Source Code Form is subject to the terms of the Mozilla Public + .. License, v. 2.0. If a copy of the MPL was not distributed with this + .. file, You can obtain one at http://mozilla.org/MPL/2.0/. .. - .. Software distributed under the License is distributed on an "AS IS" - .. basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the - .. License for the specific language governing rights and limitations - .. under the License. - .. - .. The Original Code is the MonetDB Database System. - .. - .. The Initial Developer of the Original Code is CWI. - .. Portions created by CWI are Copyright (C) 1997-July 2008 CWI. - .. Copyright August 2008-2014 MonetDB B.V. - .. All Rights Reserved. + .. Copyright 1997 - July 2008 CWI, August 2008 - 2016 MonetDB B.V. .. This document is written in reStructuredText (see http://docutils.sourceforge.net/ for more information). @@ -128,5 +117,5 @@ Classifier: Topic :: Database Classifier: Topic :: Database :: Database Engines/Servers Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers -Classifier: License :: Other/Proprietary License +Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) Classifier: Programming Language :: Python :: 2 diff --git a/pymonetdb/__init__.py b/pymonetdb/__init__.py --- a/pymonetdb/__init__.py +++ b/pymonetdb/__init__.py @@ -19,7 +19,7 @@ from pymonetdb.sql.pythonize import * from pymonetdb.exceptions import * -__version__ = '0.1' +__version__ = '1.0' __all__ = ["sql", "mapi", "exceptions"] apilevel = "2.0" threadsafety = 0 diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -29,11 +29,11 @@ setup(name='pymonetdb', "Topic :: Database :: Database Engines/Servers", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", - "License :: Other/Proprietary License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: PyPy", ] + "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", ) _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
