You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- TODO: mention optional use of rich, choice of licenses, git and venv initialization -->
23
23
24
-
-Beautiful and powerful command-line interfaces with [Click](https://click.palletsprojects.com/)
25
-
-Linting with autofix (i.e. removing unused imports, formatting and Python syntax upgrades) with [ruff](https://beta.ruff.rs/docs/)
26
-
-Code formatting with [ruff](https://beta.ruff.rs/docs/) and [Prettier](https://prettier.io/)
27
-
-Static type-checking with [mypy](http://www.mypy-lang.org/)
28
-
-Checks and fixes before every commit with [pre-commit](https://pre-commit.com/)
29
-
-Testing with [pytest](https://docs.pytest.org/en/stable/index.html)
30
-
-Project automation with [Nox](https://nox.thea.codes/en/stable/)
31
-
-Extremely fast Python package and project management with [uv](https://docs.astral.sh/uv/)
32
-
-Continuous Integration with [GitHub Actions](https://github.com/features/actions) and [pre-commit.ci](https://pre-commit.ci/)
33
-
-Automated version updates for GitHub Actions with [Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot)
34
-
-Documentation with [Sphinx](https://www.sphinx-doc.org/en/master/), [MyST](https://myst-parser.readthedocs.io/en/latest/), and [Read the Docs](https://readthedocs.org/) using the [Furo](https://pradyunsg.me/furo/) theme
35
-
-Automated release builds and uploads to [PyPI](https://pypi.org/)
24
+
- Beautiful and powerful command-line interfaces with [Click](https://click.palletsprojects.com/)
25
+
- Linting with autofix (i.e. removing unused imports, formatting and Python syntax upgrades) with [ruff](https://beta.ruff.rs/docs/)
26
+
- Code formatting with [ruff](https://beta.ruff.rs/docs/) and [Prettier](https://prettier.io/)
27
+
- Static type-checking with [mypy](http://www.mypy-lang.org/)
28
+
- Checks and fixes before every commit with [pre-commit](https://pre-commit.com/)
29
+
- Testing with [pytest](https://docs.pytest.org/en/stable/index.html)
30
+
- Project automation with [Nox](https://nox.thea.codes/en/stable/)
31
+
- Extremely fast Python package and project management with [uv](https://docs.astral.sh/uv/)
32
+
- Continuous Integration with [GitHub Actions](https://github.com/features/actions) and [pre-commit.ci](https://pre-commit.ci/)
33
+
- Automated version updates for GitHub Actions with [Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot)
34
+
- Documentation with [Sphinx](https://www.sphinx-doc.org/en/master/), [MyST](https://myst-parser.readthedocs.io/en/latest/), and [Read the Docs](https://readthedocs.org/) using the [Furo](https://pradyunsg.me/furo/) theme
35
+
- Automated release builds and uploads to [PyPI](https://pypi.org/)
36
36
37
37
This template supports Python 3.9, 3.10, 3.11, 3.12 and 3.13.
All notable changes to this project will be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Calendar Versioning](https://calver.org/).
6
+
7
+
The **first number** of the version is the year.
8
+
The **second number** is incremented with each release, starting at 1 for each year.
9
+
The **third number** is for emergencies when we need to start branches for older releases.
10
+
11
+
## Unreleased
12
+
13
+
### Added
14
+
15
+
- Initial release of {{ cookiecutter.friendly_name }}
0 commit comments