Default options (django-admin and manage.py)
https://docs.djangoproject.com/ja/4.1/ref/django-admin/#default-options
--pythonpath PYTHONPATH
If this isn’t provided, django-admin will use the PYTHONPATH environment variable.
This option is unnecessary in manage.py, because it takes care of setting the Python path for you.
--settings SETTINGS
Pythonパッケージのsyntax(ドットつなぎ)でsettingsモジュールを指定する
(Python用語集 修飾名)
If this isn’t provided, django-admin will use the DJANGO_SETTINGS_MODULE environment variable.
This option is unnecessary in manage.py, because it uses settings.py from the current project by default.
関連:設定ファイルの指定(Djangoの設定)