Re: Best practice on how to package a python module along with a c++ program

2020-05-12 Thread Uwe Steinmann
On Sat, May 09, 2020 at 11:50:33AM +0200, Gregor Riepl wrote: > >> I'm packaging a c++ program (horizon-eda) which also contains a > >> python module written in c++. Upstream's Makefile has a target 'pymodule' > >> and 'make pymodule' creates horizon.so in the build directory. > >> According to

Re: Best practice on how to package a python module along with a c++ program

2020-05-09 Thread Gregor Riepl
>> I'm packaging a c++ program (horizon-eda) which also contains a >> python module written in c++. Upstream's Makefile has a target 'pymodule' >> and 'make pymodule' creates horizon.so in the build directory. >> According to upstream this has to be copied Ń–nto python's sys.path > > The preferred

Re: Best practice on how to package a python module along with a c++ program

2020-05-08 Thread Scott Kitterman
On Friday, May 8, 2020 6:59:08 AM EDT Uwe Steinmann wrote: > Hi, > > not sure if this is the right list, but it was my closes guess. > > I'm packaging a c++ program (horizon-eda) which also contains a > python module written in c++. Upstream's Makefile has a target 'pymodule' > and 'make