Template package for Python cmd tool.
From github
$ pip install git+https://github.com/teramonagi/template-python-cmd
Local
$ cd <path to template-python-cmd>
$ pip install .
Run main script(main.py) automatically
$ python -m template_python_cmd
$ import template_python_cmd.hoge
$ template_python_cmd.hoge.hello()
$ import template_python_cmd.moge.noge
$ template_python_cmd.moge.noge.f()
$ from template_python_cmd.moge import noge
$ noge.f()
$ from template_python_cmd.moge.noge import f
$ f()