From 27744222246fc9bc33e1091f6106386ac12ea011 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Fri, 29 Mar 2019 16:21:28 +0100 Subject: [PATCH] Patch the way of installing the obi main command --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 023ac7c..6384c06 100755 --- a/setup.py +++ b/setup.py @@ -11,11 +11,11 @@ from Cython.Build import cythonize import os.path from distutils import log from distutils.extension import Extension -from pip._internal.cli.cmdoptions import build_dir sys.path.append(os.path.abspath("python")) -print(sys.path) +dependencies = ['sphinx',"Cython"] + def findPackage(root,base=None): modules=[] @@ -120,6 +120,6 @@ setup(name=PACKAGE, ext_modules=xx, packages = findPackage('python'), package_dir = {"" : "python"}, - scripts = ['python/obi.py'] + scripts = ['scripts/obi'] )