Back to Cookiecutter

0.5

CHANGELOG/0.5.md

2.7.1774 B
Original Source
  • 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.