I've made a little django app, only one management command, which is packaged into an egg.
If I unzip the egg into a blank django project, add it to installed_apps, the management command works.
However, when it is easy_install
ed onto a server and although it's in the path (I can import the Command
class on the command line), and in INSTALLED_APPS
, the management command isn't registered. It's installed from the egg into the site-packages.
Help!