Remove unused option in the setup script (#239)

Additionnal files to be distributed along
with the sources are already specified in
the MANIFEST.in file thus the package_data
entry in the setup script can be safely removed
This commit is contained in:
0livd 2017-06-27 23:11:52 +02:00 committed by Alexis Metaireau
parent ce90ff0ffd
commit 2ad4ef5466
2 changed files with 3 additions and 3 deletions

View file

@ -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) - **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) 1.0 (2017-06-20)
---------------- ----------------

View file

@ -59,9 +59,6 @@ setup(name='ihatemoney',
author_email='alexis@notmyidea.org', author_email='alexis@notmyidea.org',
url='https://github.com/spiral-project/ihatemoney', url='https://github.com/spiral-project/ihatemoney',
packages=find_packages(), packages=find_packages(),
package_data={'': ['*.rst', '*.py', '*.yaml', '*.po', '*.mo', '*.html',
'*.css', '*.js', '*.eot', '*.svg', '*.woff', '*.txt',
'*.png', '*.ini', '*.cfg']},
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=REQUIREMENTS, install_requires=REQUIREMENTS,