I'm trying to have a directory structure for my custom django-admin commands.
According to the Django tutorial, commands are created as modules under the management/commands directory.
e.g.
management/commands/closepoll.py
I have many commands so I'm trying to split them into packages. I want to have a package structure, like:
management/commands/closepoll/closepoll.py <-- contains the Command class.
management/commands/closepoll/closepoll_utils.py
management/commands/closepoll/__init__.py
Tried that, but Django does not recognize the command.