How exactly do I configure my setup.py file so that when someone runs easy_install the package gets expanded into \site-packages\ as a directory, rather than remaining inside an egg.
The issue I'm encountering is that one of the django apps I've created won't auto-detect if it resides inside an egg.
EDIT: For example, if I type easy_install photologue
it simply installs a \photologue\
directory into site-packages. This the the behaviour I'd like, but it seems that in order to make that happen, there needs to be at least one directory/module within the directory being packaged.