From 4dd4538069bb0cdf27db09799bc99933dd2972e1 Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Sun, 31 Aug 2014 03:39:34 +0200 Subject: Exclude the pyc, pyo files and __pycache__ directories from packaging (thanks to Kevin Brown). --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) (limited to 'MANIFEST.in') 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] -- cgit v1.2.3