From 71b1948f3396a62dee87e50cab65db28522f7666 Mon Sep 17 00:00:00 2001 From: "Balasankar \"Balu\" C" Date: Fri, 26 Oct 2018 00:37:41 +0530 Subject: [PATCH] Dual license and bump version --- LICENSE => LICENSE.GPLv3 | 0 LICENSE.MIT | 21 +++++++++++++++++++++ README.md | 8 ++++++-- setup.py | 9 +++++---- 4 files changed, 32 insertions(+), 6 deletions(-) rename LICENSE => LICENSE.GPLv3 (100%) create mode 100644 LICENSE.MIT diff --git a/LICENSE b/LICENSE.GPLv3 similarity index 100% rename from LICENSE rename to LICENSE.GPLv3 diff --git a/LICENSE.MIT b/LICENSE.MIT new file mode 100644 index 0000000..c8c60e0 --- /dev/null +++ b/LICENSE.MIT @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Balasankar C + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 32887db..d3bee9a 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,11 @@ for key in deps: ``` ### Copyright -2015 Balasankar C +2015-2018 Balasankar C ### License -gemfileparser is released under [GNU GPL version 3 (or above) License](http://www.gnu.org/licenses/gpl). +gemfileparser is dual-licensed under [GNU GPL version 3 (or above) License](http://www.gnu.org/licenses/gpl) and [MIT License](https://opensource.org/licenses/MIT). + +Personally, I prefer anyone using this to respect the GPL license and use that +itself for derivative works - thus making them also Free Software. But, your +call. diff --git a/setup.py b/setup.py index 68af29e..db91450 100644 --- a/setup.py +++ b/setup.py @@ -10,8 +10,8 @@ 'url': 'https://gitlab.com/balasankarc/gemfileparser', 'download_url': 'https://gitlab.com/balasankarc/gemfileparser', 'author_email': 'balasankarc@autistici.org', - 'version': '0.6.2', - 'license': 'GPL-3+', + 'version': '0.7.0', + 'license': 'GPL-3+ and MIT', 'long_description': ''' Installation ~~~~~~~~~~~~ @@ -73,12 +73,12 @@ Copyright ~~~~~~~~~ -2015 Balasankar C balasankarc@autistici.org +2015-2018 Balasankar C balasankarc@autistici.org License ~~~~~~~ -gemfileparser is released under `GNU GPL version 3 (or above) License`_. +gemfileparser is released under two licenses: `GNU GPL version 3 (or above) License` and `MIT License`_. .. _GNU GPL version 3 (or above) License: http://www.gnu.org/licenses/gpl ''', @@ -93,6 +93,7 @@ # Indicate who your project is intended for 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'License :: OSI Approved :: MIT', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', ], **config)