I'm working on a Python package, and I'd like to add a script to the users PATH once they install it. I'm not sure if this is the correct terminology, so here's an example of what I'd like to accomplish:
- user installs package via pip
pip install my-pkg
- once installed the user can enter the following in their termial
my-pkg start
- this then creates a settings.py/index.html files in the current dir
This is similar to running django-admin startproject. Thanks for any help.