From 45cda586d21cddbb0ce34157e118eb15f6d8cf77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Wed, 13 May 2015 08:37:36 +0200 Subject: [PATCH] Fix: Make pip install -e . work properly by linking to ./src, not ./ --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4ff93122..10e010a7 100644 --- a/setup.py +++ b/setup.py @@ -113,8 +113,7 @@ def params(): packages = find_packages(where="src") package_dir = { - "octoprint": "src/octoprint", - "octoprint_setuptools": "src/octoprint_setuptools" + "": "src" } package_data = { "octoprint": octoprint_setuptools.package_data_dirs('src/octoprint', ['static', 'templates', 'plugins', 'translations'])