From 5679133ddd69c1fe95a052ca1e45242568b0f7cb Mon Sep 17 00:00:00 2001 From: Marius van Niekerk Date: Thu, 23 Mar 2017 15:44:43 -0400 Subject: [PATCH] Added LICENSE file to the MANIFEST.in There were also some weird things in that the LICENSE file is Apache 2.0, whilst the setup.py file says BSD --- MANIFEST.in | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index fbeac5b..abba447 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include versiontools_support.py +include LICENSE diff --git a/setup.py b/setup.py index f051dc4..af24105 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ author_email = 'noah@coderanger.net', description = 'Python implementation of a Chef API client.', long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(), - license = 'BSD', + license = 'Apache 2.0', keywords = '', url = 'http://github.com/coderanger/pychef', classifiers = [ @@ -23,7 +23,7 @@ 'Development Status :: 5 - Production/Stable', #'Development Status :: 6 - Mature', #'Development Status :: 7 - Inactive', - 'License :: OSI Approved :: BSD License', + 'License :: OSI Approved :: Apache License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python',