From b80bfa5c52aaa1db6532fc00a3cfe11e38afd567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bruckert?= Date: Mon, 28 Jun 2021 20:54:42 +0100 Subject: [PATCH] Generate license (#699) * Create LICENSE * Delete LICENSE.md * Update setup.py * Update CHANGELOG.md --- CHANGELOG.md | 1 + LICENSE.md => LICENSE | 12 ++++++------ setup.py | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) rename LICENSE.md => LICENSE (87%) diff --git a/CHANGELOG.md b/CHANGELOG.md index afe7865..e0b3fa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Fixed a bug in `CacheFileHandler.__init__`: The documentation says that the username will be retrieved from the environment, but it wasn't. * Fixed a bug in the initializers for the auth managers that produced a spurious warning message if you provide a cache handler and you set a value for the "SPOTIPY_CLIENT_USERNAME" environment variable. +* Use generated MIT license ## [2.18.0] - 2021-04-13 diff --git a/LICENSE.md b/LICENSE similarity index 87% rename from LICENSE.md rename to LICENSE index 938a83f..f121286 100644 --- a/LICENSE.md +++ b/LICENSE @@ -1,6 +1,6 @@ -The MIT License (MIT) +MIT License -Copyright (c) 2014 Paul Lamere +Copyright (c) 2021 Paul Lamere Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -9,13 +9,13 @@ 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 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. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/setup.py b/setup.py index 69bfff9..0271015 100644 --- a/setup.py +++ b/setup.py @@ -32,5 +32,5 @@ setup( ], tests_require=test_reqs, extras_require=extra_reqs, - license='LICENSE.md', + license='LICENSE', packages=['spotipy'])