Auto Add newly created Django app in settings.py filefile

Everytime we create a new app in django , we need to manually add it in settings.py file under INSTALLED_APPS section which is quite frustrating . Because sometimes we forgot to do so and results in a bag full of errors.
There can be various solutions to this problem which automate this manual process.
We can use a small script or customize the startapp behavior or May be some trigger which recognize the ‘python manage.py startapp’ command and append the newly created app in INSTALLED_APPS list.