[Distutils] Installing required DLLs

Brian Quinlan brian@sweetapp.com
Sat Jan 5 22:41:00 2002


Hi,

I was wondering if there is an easy way to install the DLLs that my
extension requires from my setup script? I would like to install them in
the same directory as my package i.e.

MyPackage\
	DLL1.dll
	DLL2.dll
	__init__.py
	blah.pyd

I use to just use:

data_files = [('MyPackage',data_files)]

but that no longer works now that extensions go into site-packages.

Cheers,
Brian