An open API service indexing awesome lists of open source software.

https://github.com/makukha/copython

Makefile-based Python project template using Copier.
https://github.com/makukha/copython

copier-template just python

Last synced: about 4 hours ago
JSON representation

Makefile-based Python project template using Copier.

Awesome Lists containing this project

README

          

# Python project template with Copier and Make
[![Copier](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/copier-org/copier/master/img/badge/badge-grayscale-border.json)](https://github.com/copier-org/copier)

## Usage

### Install

```shell
uv tool install copier --with jinja2-shell-extension --with jinja2-time
```

### Seed new project

```shell
uvx copier copy --trust --vcs-ref main gh:makukha/copython .
make seed
```

### Test template locally

```shell
rm -rf .tmp
uvx copier copy --trust --vcs-ref HEAD . .tmp
cd .tmp
make init
```

Update local testing instance:

```shell
uvx copier copy --trust --vcs-ref HEAD --data-file .tmp/.copier-answers.yml --overwrite . .tmp
```