Skip to content

Commit

Permalink
Be more selective when including assets in the source tarball.
Browse files Browse the repository at this point in the history
Using a plain wildcard `*` also includes build-artifacts like `.pyc` files in
the source tarball. This is then flagged by systems like Debian's `lintian`
which checks for clean source tarballs.
  • Loading branch information
fladi authored and dominicrodger committed Nov 24, 2018
1 parent 3c9073e commit e8dc253
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include README.md
include LICENSE
include MANIFEST.in
include pytest.ini
recursive-include docs *
recursive-include recurrence/static *
recursive-include recurrence/locale *
recursive-include tests *
recursive-include docs Makefile make.bat *.rst *.py *.png
recursive-include recurrence/static *.css *.png *.js
recursive-include recurrence/locale *.mo *.po
recursive-include tests *.py

0 comments on commit e8dc253

Please sign in to comment.