Re: Python Bindings for MLT

2009-12-29 Thread Jonathan Thomas
I solved this problem also. I needed to change my setup.py to include a mlt folder, not a mlt-python folder. Also, I modified the __init__.py to include the following code: "from mlt import *" Now when I install the package, python-support puts everything in the /usr/lib/pymodules/ folder, which

Re: Python Bindings for MLT

2009-12-28 Thread Jonathan Thomas
I have figured out the answer to my question. Python-support correctly adds my folder and files to the Python path. This changes the way I need to import the python module from >> import mlt to >> import mlt-python.mlt However, "mlt-python" does not appear to be a valid module name for Python. I

Re: Python Bindings for MLT

2009-12-28 Thread Jonathan Thomas
Jakub, Thanks for the advice. I have removed the postinst script and the DEB_PYTHON_INSTALL_ARGS_ALL line. I have also contacted the MLT packagers, but I'm not confident they will include the Python bindings in their packages. Here is a dumb question. After installing the DEB file, it moves all

Re: Python Bindings for MLT

2009-12-17 Thread Jakub Wilk
Hello, * Jonathan Thomas , 2009-12-15, 13:16: I have done my best to package the MLT Python bindings (which were generated using Swig), and I have published to my own PPA(hosted on LaunchPad). I am fairly certain that my build script nee