fix installation documentation
lfiaschi opened this issue · 3 comments
During installation the developer still needs to go in the lazyflow/drtile folder and run manually cmake. This passage is not currently documented.
The setup.py script is pythons native and recommended way to build extensions. I'm using distuils.core not setuptools. It works on any platform python works. It finds the headers and libs automatically as long you install them in the search paths. Anyway custom paths can be specified in the setup.cfg (example is included in the PR).
Your old setup.py ships drtile as package_data i.e. it simply copies the file with extension ".so" (with is for sure not working on windows, and is for sure the wrong extension OSX). setup.py handles all these platform specific issues.