Add manage.py to package

This commit is contained in:
Gregory Soutade
2014-02-02 08:53:08 +01:00
parent dde64f9219
commit ef03d87799
3 changed files with 18 additions and 4 deletions

10
manage.py Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dynastie.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)