From bc3044ef60d4229348da5d4351930118f2d4999b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 20 Jul 2007 23:12:39 +0000 Subject: [PATCH] Exclude source files from egg --- upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload.py b/upload.py index ca9eb5f03c..0220864c6c 100644 --- a/upload.py +++ b/upload.py @@ -102,7 +102,7 @@ def main(): print 'Uploading installers...' upload_installers(exe, dmg) print 'Uploading to PyPI' - check_call('''python setup.py register bdist_egg upload''') + check_call('''python setup.py register bdist_egg --exclude-source-files upload''') upload_docs() check_call('''rm -rf dist/* build/*''')