The new install version based on classical setup.py #1

Merged
coissac merged 15 commits from pip-standard-orig-python into master 2019-03-29 15:25:03 +00:00
40 changed files with 227 additions and 2163 deletions
Showing only changes of commit 2774422224 - Show all commits

View File

@ -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']
)