From 94a0923e29ecafcb2bf44594fcb6a55dbdec04fd Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Tue, 16 May 2017 22:43:39 +0100 Subject: [PATCH] build: Fix python project detection --- src/lib/edi_build_provider_python.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/edi_build_provider_python.c b/src/lib/edi_build_provider_python.c index cb1e2ab..a5b36e5 100644 --- a/src/lib/edi_build_provider_python.c +++ b/src/lib/edi_build_provider_python.c @@ -26,7 +26,7 @@ _relative_path_exists(const char *base, const char *relative) static Eina_Bool _python_project_supported(const char *path) { - return _relative_path_exists(path, "requirements.txt"); + return _relative_path_exists(path, "setup.py"); } static Eina_Bool