Fix excludes

I definitely see files from `__pycache__` as well as `.pyc` files in the package. Fixed according to https://www.reddit.com/r/Python/comments/40s8qw/simplify_your_manifestin_commands and https://github.com/django/django/pull/5817
This commit is contained in:
Benedek Kiss 2017-08-29 22:22:00 +02:00 committed by GitHub
parent 1c5710bf6c
commit ff2fa7a866

View File

@ -2,5 +2,5 @@ include README.md
include LICENSE.md
recursive-include rest_framework/static *.js *.css *.png *.eot *.svg *.ttf *.woff
recursive-include rest_framework/templates *.html
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
global-exclude __pycache__
global-exclude *.py[co]