Including a pyd directly in a setup.py file?

You could add your extension name to 'includes.

You could add your extension name to 'includes' options={ 'py2exe':{'includes':'yourextensionname_without_pyd'} } Here is the list of options from py2exe site.

Here is an answer to your first question: from distutils. Core import setup setup( name = "foo", ... data_files = ('Lib/site-packages/foo', 'foo1. Pyd', 'foo2.

Pyd') ).

Note that this solution is platform-specific (because of Lib, which is for example lib on UNIX). – Éric Araujo Oct 28 at 15:50.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions