From 4dd4538069bb0cdf27db09799bc99933dd2972e1 Mon Sep 17 00:00:00 2001 From: Xavier Ordoquy Date: Sun, 31 Aug 2014 03:39:34 +0200 Subject: [PATCH] Exclude the pyc, pyo files and __pycache__ directories from packaging (thanks to Kevin Brown). --- MANIFEST.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MANIFEST.in b/MANIFEST.in index 15c4d0b08..d407865fb 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]