|
5 | 5 | [![Nox][nox-badge]](https://github.com/wntrblm/nox) |
6 | 6 | [![Ruff][ruff-badge]](https://github.com/astral-sh/ruff) |
7 | 7 | [![Type checked with mypy][mypy-badge]](https://mypy-lang.org/) |
| 8 | +[![Python Blueprint][python-blueprint-badge]](https://github.com/johnthagen/python-blueprint) |
8 | 9 |
|
9 | 10 | [github-actions-badge]: https://github.com/johnthagen/python-blueprint/actions/workflows/ci.yml/badge.svg |
10 | 11 | [uv-badge]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json |
11 | 12 | [nox-badge]: https://img.shields.io/badge/%F0%9F%A6%8A-Nox-D85E00.svg |
12 | 13 | [ruff-badge]: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json |
13 | 14 | [mypy-badge]: https://www.mypy-lang.org/static/mypy_badge.svg |
| 15 | +[python-blueprint-badge]: https://img.shields.io/badge/%F0%9F%97%BA-python--blueprint-2dcf59.svg |
14 | 16 |
|
15 | 17 | Example Python project that demonstrates how to create a Python package using the latest |
16 | 18 | Python testing, linting, and type checking tooling. The project contains a `fact` package that |
17 | 19 | provides a simple implementation of the |
18 | 20 | [factorial algorithm](https://en.wikipedia.org/wiki/Factorial) (`fact.lib`) and a command line |
19 | 21 | interface (`fact.cli`). |
20 | 22 |
|
| 23 | +> [!TIP] |
| 24 | +> Support `python-blueprint` by adding a [badge](#badge). |
| 25 | +
|
21 | 26 | # Package Management |
22 | 27 |
|
23 | 28 | This package uses [uv](https://docs.astral.sh/uv/) to manage dependencies and |
@@ -466,6 +471,18 @@ fact v1.0.0 |
466 | 471 | └── shellingham v1.5.4 (extra: standard) |
467 | 472 | ``` |
468 | 473 |
|
| 474 | +# Badge |
| 475 | + |
| 476 | +Support [`python-blueprint`](https://github.com/johnthagen/python-blueprint) by adding the badge |
| 477 | +to your project: |
| 478 | + |
| 479 | +[![Python Blueprint][python-blueprint-badge]](https://github.com/johnthagen/python-blueprint) |
| 480 | + |
| 481 | +```md |
| 482 | +[![Python Blueprint][python-blueprint-badge]](https://github.com/johnthagen/python-blueprint) |
| 483 | +[python-blueprint-badge]: https://img.shields.io/badge/%F0%9F%97%BA-python--blueprint-2dcf59.svg |
| 484 | +``` |
| 485 | + |
469 | 486 | # PyCharm Configuration |
470 | 487 |
|
471 | 488 | > [!TIP] |
|
0 commit comments