From 09b62d1d2f63d5d593ed9047de3b5ae7c8a16d9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Fri, 12 Sep 2014 10:00:58 +0200 Subject: [PATCH] Change license to BSD and release 2.0.1 --- LICENSE | 25 +++++++++++++++++++++++++ setup.py | 4 ++-- validatedfile/__init__.py | 2 +- 3 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..96aba9c --- /dev/null +++ b/LICENSE @@ -0,0 +1,25 @@ +Copyright (c) 2014 Andrés Moya Velázquez + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. Neither the name of copyright holders nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/setup.py b/setup.py index c93d14a..14e11e6 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ author = u'Andrés Moya Velázquez', author_email = 'andres.moya@kaleidos.net', url = 'https://github.com/kaleidos/django-validated-file', - license = 'GPL3', + license = 'BSD', include_package_data = True, package_data = { '': ['*.po', '*.mo'], @@ -31,7 +31,7 @@ 'Development Status :: 5 - Production/Stable', 'Framework :: Django', 'Intended Audience :: Developers', - 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP', ] diff --git a/validatedfile/__init__.py b/validatedfile/__init__.py index 6f2f160..b295e94 100644 --- a/validatedfile/__init__.py +++ b/validatedfile/__init__.py @@ -1 +1 @@ -__version__ = (2, 0, 0, "final", 0) +__version__ = (2, 0, 1, "final", 0)