diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 830993e..4228906 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,9 @@ This is the changelog for Puppetboard. ===== * Fix the sorting of the different tables containing facts. +* Fix the license in our ``setup.py``. The license shouldn't be longer than + 200 characters. We were including the full license tripping up tools like + bdist_rpm. 0.0.3 ===== diff --git a/setup.py b/setup.py index 0607dce..a03d4ec 100644 --- a/setup.py +++ b/setup.py @@ -17,9 +17,6 @@ with codecs.open('README.rst', encoding='utf-8') as f: with codecs.open('CHANGELOG.rst', encoding='utf-8') as f: CHANGELOG = f.read() -with codecs.open('LICENSE', encoding='utf-8') as f: - LICENSE = f.read() - setup( name='puppetboard', version=VERSION, @@ -27,7 +24,7 @@ setup( author_email='daniele.sluijters+pypi@gmail.com', packages=find_packages(), url='https://github.com/nedap/puppetboard', - license=LICENSE, + license='Apache License 2.0', description='Web frontend for PuppetDB', include_package_data=True, long_description='\n'.join((README, CHANGELOG)),