python-package-template-pypi 0.5.3__tar.gz → 0.5.4__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.5.3
3
+ Version: 0.5.4
4
4
  Summary: Python package template configuration.
5
5
  Keywords: python,template,package,github,pypi
6
6
  Author: Daniel Mizsak
@@ -0,0 +1,57 @@
1
+ [build-system]
2
+ requires = ["uv_build>=0.11,<0.12"]
3
+ build-backend = "uv_build"
4
+
5
+ [project]
6
+ name = "python-package-template-pypi"
7
+ version = "0.5.4"
8
+ description = "Python package template configuration."
9
+ readme = "README.md"
10
+ keywords = [
11
+ "python",
12
+ "template",
13
+ "package",
14
+ "github",
15
+ "pypi",
16
+ ]
17
+ classifiers = [
18
+ "Programming Language :: Python :: 3 :: Only",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
21
+ "Programming Language :: Python :: 3.14",
22
+ ]
23
+ requires-python = ">=3.12"
24
+ dependencies = ["numpy>=2.4.4"]
25
+
26
+ [project.license]
27
+ file = "LICENSE"
28
+
29
+ [[project.authors]]
30
+ name = "Daniel Mizsak"
31
+ email = "daniel@mizsak.com"
32
+
33
+ [project.urls]
34
+ Repository = "https://github.com/daniel-mizsak/python-package-template/"
35
+ Documentation = "https://daniel-mizsak.github.io/python-package-template/"
36
+ Issues = "https://github.com/daniel-mizsak/python-package-template/issues/"
37
+
38
+ [dependency-groups]
39
+ dev = [
40
+ "coverage==7.15.2",
41
+ "nox==2026.7.11",
42
+ "prek==0.4.11",
43
+ "pytest==9.1.1",
44
+ "ruff==0.16.0",
45
+ "ty==0.0.63",
46
+ ]
47
+ docs = [
48
+ "zensical==0.0.51",
49
+ "mkdocstrings-python==2.0.5",
50
+ ]
51
+
52
+ [tool.uv]
53
+ exclude-newer = "1 week"
54
+
55
+ [tool.uv.build-backend]
56
+ module-root = "src"
57
+ module-name = "python_package_template"
@@ -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.5.3" # Version set by GitHub release.
9
+ version = "0.5.4" # Version set by GitHub release.
10
10
  description = "Python package template configuration."
11
11
  readme = "README.md"
12
12
  license = { file = "LICENSE" }
@@ -28,14 +28,14 @@
28
28
 
29
29
  [dependency-groups]
30
30
  dev = [
31
- "coverage==7.14.3",
32
- "nox==2026.4.10",
33
- "prek==0.4.5",
31
+ "coverage==7.15.2",
32
+ "nox==2026.7.11",
33
+ "prek==0.4.11",
34
34
  "pytest==9.1.1",
35
- "ruff==0.15.20",
36
- "ty==0.0.54",
35
+ "ruff==0.16.0",
36
+ "ty==0.0.63",
37
37
  ]
38
- docs = ["zensical==0.0.46", "mkdocstrings-python==2.0.5"]
38
+ docs = ["zensical==0.0.51", "mkdocstrings-python==2.0.5"]
39
39
 
40
40
  # Tools
41
41
  # Uv
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Python package template configuration.
3
3
 
4
- @author "Daniel Mizsak" <daniel@mizsak.com>
4
+ Copyright (C) 2026 "Daniel Mizsak" <daniel@mizsak.com>
5
5
  """
6
6
 
7
7
  from python_package_template.main import add_five, subtract_three
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Main module of the package.
3
3
 
4
- @author "Daniel Mizsak" <daniel@mizsak.com>
4
+ Copyright (C) 2026 "Daniel Mizsak" <daniel@mizsak.com>
5
5
  """
6
6
 
7
7
  import numpy as np