diff options
author | Jayaram R Pai | 2014-09-10 14:57:59 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-10 14:57:59 +0530 |
commit | f5d42c76e60d095c9f6362d206cf256de2c8ecb7 (patch) | |
tree | 025766970199be6b5cea4e74065d007c8fed9895 /manage.py | |
download | scipy2014-f5d42c76e60d095c9f6362d206cf256de2c8ecb7.tar.gz scipy2014-f5d42c76e60d095c9f6362d206cf256de2c8ecb7.tar.bz2 scipy2014-f5d42c76e60d095c9f6362d206cf256de2c8ecb7.zip |
initial commit
Diffstat (limited to 'manage.py')
-rw-r--r-- | manage.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..054487a --- /dev/null +++ b/manage.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "scipy.settings") + + from django.core.management import execute_from_command_line + + execute_from_command_line(sys.argv) |