diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7e5514cc..6f475e6d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,6 +10,9 @@ This document describes changes between each past release. - **BREAKING CHANGE** Use a hashed ``ADMIN_PASSWORD`` instead of a clear text one, ``./budget/manage.py generate_password_hash`` can be used to generate a proper password HASH (#236) +### Removed + +- Remove unused option in the setup script 1.0 (2017-06-20) ---------------- diff --git a/setup.py b/setup.py index 2aed3bd9..c70a31d2 100644 --- a/setup.py +++ b/setup.py @@ -59,9 +59,6 @@ setup(name='ihatemoney', author_email='alexis@notmyidea.org', url='https://github.com/spiral-project/ihatemoney', packages=find_packages(), - package_data={'': ['*.rst', '*.py', '*.yaml', '*.po', '*.mo', '*.html', - '*.css', '*.js', '*.eot', '*.svg', '*.woff', '*.txt', - '*.png', '*.ini', '*.cfg']}, include_package_data=True, zip_safe=False, install_requires=REQUIREMENTS,