diff options
| author | Xavier Ordoquy | 2014-08-31 03:39:34 +0200 | 
|---|---|---|
| committer | Xavier Ordoquy | 2014-08-31 03:39:34 +0200 | 
| commit | 4dd4538069bb0cdf27db09799bc99933dd2972e1 (patch) | |
| tree | c5c84b41e58fe5db3bdefb71ba5a23002ff6bf7a | |
| parent | efaa37376ca0bb6f2442b633665ff8d3264e89d6 (diff) | |
| download | django-rest-framework-4dd4538069bb0cdf27db09799bc99933dd2972e1.tar.bz2 | |
Exclude the pyc, pyo files and __pycache__ directories from packaging (thanks to Kevin Brown).
| -rw-r--r-- | MANIFEST.in | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/MANIFEST.in b/MANIFEST.in index 15c4d0b0..d407865f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,4 @@  recursive-include rest_framework/static *.js *.css *.png  recursive-include rest_framework/templates *.html +recursive-exclude * __pycache__ +recursive-exclude * *.py[co] | 
