/manage.py

https://bitbucket.org/bconstantin/django_polymorphic/ · Python · 29 lines · 18 code · 6 blank · 5 comment · 4 complexity · 9a0514f4a3929e2e644f93963ca30d44 MD5 · raw file

  1. #!/usr/bin/env python
  2. # Prepend project subdirectory 'libraries-local' to sys.path.
  3. # This allows us to use/test any version of Django
  4. # (e.g. Django 1.2 subversion) or any other packages/libraries.
  5. import sys, os
  6. project_path = os.path.dirname(os.path.abspath(__file__))
  7. libs_local_path = os.path.join(project_path, 'libraries-local')
  8. if libs_local_path not in sys.path: sys.path.insert(1, libs_local_path)
  9. sys.stderr.write( 'using Python version: %s\n' % sys.version[:5])
  10. import django
  11. sys.stderr.write( 'using Django version: %s, from %s\n' % (
  12. django.get_version(),
  13. os.path.dirname(os.path.abspath(django.__file__))) )
  14. # vanilla Django manage.py from here on:
  15. from django.core.management import execute_manager
  16. try:
  17. import settings # Assumed to be in the same directory.
  18. except ImportError:
  19. import sys
  20. sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)
  21. sys.exit(1)
  22. if __name__ == "__main__":
  23. execute_manager(settings)