/cookiecutter-python-template

My recomended Cookiecutter template for Python apps

Primary LanguagePythonMIT LicenseMIT

Main

Cookiecutter Template for Python Projects

This template uses Pipenv as a dependency manager.

I have similar template that uses Poetry here.

Usage

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