Re: support for custom django-admin commands written as packages

2011-06-07 Thread Marwan Al-Sabbagh
I agree with many of your points. It would be nice if Django did not deal with the file system directly but just imports the packages. There have been some efforts to do custom commands in a better way. there is the project django-boss https://github.com/zacharyvoase/django-boss which stemmed out

Re: support for custom django-admin commands written as packages

2011-06-06 Thread Carl Meyer
Hi Marwan, On 06/05/2011 10:15 AM, Marwan Al-Sabbagh wrote: > Hello, > Currently one can create a custom command by implementing a Command > object in a python module such as > "polls/management/commands/closepoll.py". It would be great if Django > also supported these commands being

support for custom django-admin commands written as packages

2011-06-05 Thread Marwan Al-Sabbagh
Hello,   Currently one can create a custom command by implementing a Command object in a python module such as "polls/management/commands/closepoll.py". It would be great if Django also supported these commands being implemented in a python package so in this case Command would be found in