How exactly can I configure the setup.py file so that when easy_install starts, the package will expand into \ site-packages \ as a directory, and not remain inside the egg.
The problem that I am facing is that one of the django applications created will not automatically determine if it is inside the egg.
EDIT: For example, if I type easy_install photologue, it simply installs the directory \photologue\in the site packages. This is the behavior that I would like, but it seems that for this to happen, the directory that was packaged must have at least one directory / module.
source
share