
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello all, I'm attempting to create a win32 binary installation for Medusa. the resulting structure i want is: ... ~ /site-packages ~ /medusa ~ /demo ~ /docs i can get the demo directory by including it as a package, but i can't seem to get docs put where i want. i've tried data_files but that puts ~ /docs up under the Python2.x directory. here is the slightly modified version included with Medusa: from distutils.core import setup setup( ~ name = 'medusa', ~ version = "0.5.4", ~ description = "A framework for implementing asynchronous servers.", ~ author = "Sam Rushing", ~ author_email = "rushing@nightmare.com", ~ maintainer = "A.M. Kuchling", ~ maintainer_email = "amk@amk.ca", ~ url = "http://oedipus.sourceforge.net/medusa/", ~ packages = ['medusa', 'medusa.demo', ], ~ package_dir = {'medusa':'.'}, ~ ) i've read the distutils docs and googled till i'm goggly-eyed. can someone point me in the right direction, please? thanks - -- Tom Jenkins devIS - Development Infostructure http://www.devis.com -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0-nr2 (Windows XP) Comment: Using GnuPG with MultiZilla - http://enigmail.mozdev.org iD8DBQE//Z25V7Yk9/McDYURAmLQAJ0VBoe5RVRkKblPKym/1cZJIKEw3wCfRBdS grD0AfiBterQtn+d2hZtgYM= =8VuT -----END PGP SIGNATURE-----
participants (1)
-
Tom Jenkins