58 lines
1.6 KiB
Python
Executable file
58 lines
1.6 KiB
Python
Executable file
#!/usr/bin/env python
|
|
# /// script
|
|
# requires-python = ">=3.13"
|
|
# dependencies = [
|
|
# "asgiref==3.8.1",
|
|
# "certifi==2022.12.7",
|
|
# "cffi==1.17.1",
|
|
# "charset-normalizer==3.0.1",
|
|
# "cookiecutter==2.6.0",
|
|
# "crispy-tailwind==1.0.3",
|
|
# "cryptography==39.0.1",
|
|
# "defusedxml==0.7.1",
|
|
# "django==5.1.2",
|
|
# "django-allauth==65.0.2",
|
|
# "django-browser-reload==1.17.0",
|
|
# "django-crispy-forms==2.3",
|
|
# "django-daisy==1.0.13",
|
|
# "django-debug-toolbar==4.4.6",
|
|
# "django-el-pagination==4.1.2",
|
|
# "django-tailwind-4[reload]==0.1.4",
|
|
# "gunicorn==23.0.0",
|
|
# "idna==3.4",
|
|
# "oauthlib==3.2.2",
|
|
# "packaging==23.1",
|
|
# "psycopg==3.2.3",
|
|
# "psycopg-binary==3.2.3",
|
|
# "pycparser==2.21",
|
|
# "pyjwt==2.6.0",
|
|
# "python3-openid==3.2.0",
|
|
# "requests==2.28.2",
|
|
# "requests-oauthlib==1.3.1",
|
|
# "sqlparse==0.4.3",
|
|
# "typing-extensions==4.9.0",
|
|
# "urllib3==1.26.14",
|
|
# "whitenoise==6.7.0",
|
|
# ]
|
|
# ///
|
|
"""Django's command-line utility for administrative tasks."""
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main():
|
|
"""Run administrative tasks."""
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_project.settings")
|
|
try:
|
|
from django.core.management import execute_from_command_line
|
|
except ImportError as exc:
|
|
raise ImportError(
|
|
"Couldn't import Django. Are you sure it's installed and "
|
|
"available on your PYTHONPATH environment variable? Did you "
|
|
"forget to activate a virtual environment?"
|
|
) from exc
|
|
execute_from_command_line(sys.argv)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|