Hi,
We have a python app we distribute on several platforms, including a
py2app-built standalone application for Mac.
Some of our data_files are platform-specific (icons, man pages…) and should
therefore only be included where relevant. We use the MANIFEST.in mechanism
to select which data_files
On 13 May, 2013, at 10:05, Olivier Cornu wrote:
> Hi,
>
> We have a python app we distribute on several platforms, including a
> py2app-built standalone application for Mac.
>
> Some of our data_files are platform-specific (icons, man pages…) and should
> therefore only be included where rel
Thanks for your quick reply. :-=
On Mon, May 13, 2013 at 11:10 AM, Ronald Oussoren wrote:
>
> py2app does not use the MANIFEST file, that file is meant to be used with
> the sdist command.
>
Well, on my machine (Linux/Python-2.7), it seems bdist, bdist_rpm and
bdist_egg (among others) do genera
On 13 May, 2013, at 18:55, Olivier Cornu wrote:
> Thanks for your quick reply. :-=
>
>
> On Mon, May 13, 2013 at 11:10 AM, Ronald Oussoren
> wrote:
>
> py2app does not use the MANIFEST file, that file is meant to be used with the
> sdist command.
>
> Well, on my machine (Linux/Python-2.7)
I am getting a message when I try to import a dynamic library included in a
module into Blender Text window:
ImportError: dynamic module does not define init function (PyInit__LeapPython)
What does this message mean and what do I need to do to eliminate it?
The library is _LeapPython.so
I belie
On Mon, May 13, 2013 at 7:15 PM, Ronald Oussoren wrote:
>
> On 13 May, 2013, at 18:55, Olivier Cornu wrote:
>
> > Well, on my machine (Linux/Python-2.7), it seems bdist, bdist_rpm and
> bdist_egg (among others) do generate an egg-info directory following
> MANIFEST.in directives, just like sdist.
On 13 May, 2013, at 19:53, Paul Coones wrote:
> I am getting a message when I try to import a dynamic library included in a
> module into Blender Text window:
>
> ImportError: dynamic module does not define init function (PyInit__LeapPython)
>
> What does this message mean and what do I need