Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.07 KB

File metadata and controls

44 lines (30 loc) · 1.07 KB

cookiecutter-python

This repository contains a Cookiecutter template for a Python package.

It's designed primarily for Trail of Bits' own use, but should be usable by anyone.

Both command-line and library packages can be generated.

Usage

  • Install uv
# On any platform with cURL and sh
curl -LsSf https://astral.sh/uv/install.sh | sh

# On Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

# With Brew
brew install uv

Please refer to uv documentation for more installation options.

  • Use cookiecutter to generate a project using this template:
# creates the project directory in $PWD
uvx cookiecutter gh:trailofbits/cookiecutter-python

Alternatively, tell cookiecutter where to put the new project directory:

# creates ~/tmp/$project
uvx cookiecutter -o ~/tmp gh:trailofbits/cookiecutter-python

cookiecutter will prompt you for the project's name and all other relevant metadata.