/cookiecutter-python-template

My recomended Cookiecutter template for Python apps

Primary LanguagePythonMIT LicenseMIT

Main

Cookiecutter Template for Python Projects

This template uses Poetry as a dependency manager.

I have similar template that uses Pipenv here.

Usage

  1. Install Cookiecutter globally
    pip install cookiecutter
  2. Use my template
    cookiecutter https://github.com/great-glow/cookiecutter-python-template
    cd <project-folder>
    git init
    poetry install
    git add .
    git commit -m "Initial commit"