Skip to content

Commit

Permalink
update clean cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent committed Sep 28, 2024
1 parent 7df9676 commit d991a1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A [Copier](https://github.com/copier-org/copier) template for a Python package b
## Usage

```sh
uvx copier copy --trust gh:branchvincent/python-template <dest>
uvx copier copy --trust gh:branchvincent/python-template .
```

## Features
Expand Down
2 changes: 1 addition & 1 deletion src/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ruff = ">=0.6"
taskipy = ">=1"

[tool.taskipy.tasks]
clean = { cmd = "rm -rf .mypy_cache/ .pytest_cache/ .ruff_cache/ build/ dist/ *.egg-info", help = "Remove build artifacts" }
clean = { cmd = "rm -rf .*_cache/ build/ dist/ *.egg-info", help = "Remove build artifacts" }
{% if docs -%}
docs = { cmd = "mkdocs serve -f docs/mkdocs.yaml", help = "Serve documentation"}
{% endif -%}
Expand Down

0 comments on commit d991a1f

Please sign in to comment.