python-package-template-pypi 0.4.0__tar.gz → 0.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-package-template-pypi
3
- Version: 0.4.0
3
+ Version: 0.5.0
4
4
  Summary: Python package template configuration.
5
5
  Keywords: python,template,package,github,pypi
6
6
  Author: Daniel Mizsak
@@ -44,7 +44,7 @@ Description-Content-Type: text/markdown
44
44
  <a href="https://github.com/daniel-mizsak/python-package-template/actions/workflows/ci.yml" target="_blank"><img src="https://github.com/daniel-mizsak/python-package-template/actions/workflows/ci.yml/badge.svg" alt="build status"></a>
45
45
  <a href="https://codecov.io/gh/daniel-mizsak/python-package-template" target="_blank"><img src="https://codecov.io/gh/daniel-mizsak/python-package-template/graph/badge.svg?token=SDXG1S8PVM" alt="codecov"></a>
46
46
  <a href="https://pypi.org/project/python-package-template-pypi" target="_blank"><img src="https://img.shields.io/pypi/v/python-package-template-pypi" alt="pypi version"></a>
47
- <a href="https://img.shields.io/github/license/daniel-mizsak/python-package-template" target="_blank"><img src="https://img.shields.io/github/license/daniel-mizsak/python-package-template" alt="license"></a>
47
+ <a href="https://github.com/daniel-mizsak/python-package-template/blob/main/LICENSE" target="_blank"><img src="https://img.shields.io/github/license/daniel-mizsak/python-package-template" alt="license"></a>
48
48
  </kbd>
49
49
  </div>
50
50
 
@@ -5,7 +5,7 @@
5
5
  <a href="https://github.com/daniel-mizsak/python-package-template/actions/workflows/ci.yml" target="_blank"><img src="https://github.com/daniel-mizsak/python-package-template/actions/workflows/ci.yml/badge.svg" alt="build status"></a>
6
6
  <a href="https://codecov.io/gh/daniel-mizsak/python-package-template" target="_blank"><img src="https://codecov.io/gh/daniel-mizsak/python-package-template/graph/badge.svg?token=SDXG1S8PVM" alt="codecov"></a>
7
7
  <a href="https://pypi.org/project/python-package-template-pypi" target="_blank"><img src="https://img.shields.io/pypi/v/python-package-template-pypi" alt="pypi version"></a>
8
- <a href="https://img.shields.io/github/license/daniel-mizsak/python-package-template" target="_blank"><img src="https://img.shields.io/github/license/daniel-mizsak/python-package-template" alt="license"></a>
8
+ <a href="https://github.com/daniel-mizsak/python-package-template/blob/main/LICENSE" target="_blank"><img src="https://img.shields.io/github/license/daniel-mizsak/python-package-template" alt="license"></a>
9
9
  </kbd>
10
10
  </div>
11
11
 
@@ -6,7 +6,7 @@
6
6
  # Project Metadata
7
7
  [project]
8
8
  name = "python-package-template-pypi" # Name has to be unique on pypi.
9
- version = "0.4.0" # Version set by GitHub release.
9
+ version = "0.5.0" # Version set by GitHub release.
10
10
  description = "Python package template configuration."
11
11
  readme = "README.md"
12
12
  license = { file = "LICENSE" }
@@ -28,17 +28,20 @@
28
28
 
29
29
  [dependency-groups]
30
30
  dev = [
31
- "coverage==7.13.5",
31
+ "coverage==7.14.1",
32
32
  "nox==2026.4.10",
33
- "prek==0.3.9",
33
+ "prek==0.4.3",
34
34
  "pytest==9.0.3",
35
- "ruff==0.15.10",
36
- "ty==0.0.31",
35
+ "ruff==0.15.14",
36
+ "ty==0.0.39",
37
37
  ]
38
- docs = ["zensical==0.0.33", "mkdocstrings-python==2.0.3"]
38
+ docs = ["zensical==0.0.43", "mkdocstrings-python==2.0.3"]
39
39
 
40
40
  # Tools
41
41
  # Uv
42
- [tool.uv.build-backend]
43
- module-root = "src"
44
- module-name = "python_package_template"
42
+ [tool.uv]
43
+ exclude-newer = "1 week"
44
+
45
+ [tool.uv.build-backend]
46
+ module-root = "src"
47
+ module-name = "python_package_template"