From 8f99421e021f09620275e5acb0eebedb98c306dd Mon Sep 17 00:00:00 2001 From: Brandon Heller <brandonh@stanford.edu> Date: Wed, 27 Jan 2010 22:29:29 -0800 Subject: [PATCH] Fix setuptools installation The packages argument was incorrectly specified, leading to an install process that would appear to have succeeded, but would not actually copy code. The error likely occurred due to copying setup.py from another project where the source files were located in a different position relative to setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index da1d14e0..6807a333 100644 --- a/setup.py +++ b/setup.py @@ -32,4 +32,4 @@ 'setuptools' ], scripts=scripts, - package_dir={modname:''}) +) -- GitLab