* Friendlier, more simplified command line usage:
bash
Create project from the cookiecutter-pypackage/ template
$ cookiecutter cookiecutter-pypackage/
Create project from the cookiecutter-pypackage.git repo template
$ cookiecutter https://github.com/audreyfeldroy/cookiecutter-pypackage.git
* Can now use Cookiecutter from Python as a package:
python
from cookiecutter.main import cookiecutter
Create project from the cookiecutter-pypackage/ template
cookiecutter('cookiecutter-pypackage/')
Create project from the cookiecutter-pypackage.git repo template
cookiecutter('https://github.com/audreyfeldroy/cookiecutter-pypackage.git')
* Internal refactor to remove any code that changes the working
directory.