python-package-template-pypi 0.3.3__tar.gz → 0.4.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.
- {python_package_template_pypi-0.3.3 → python_package_template_pypi-0.4.0}/PKG-INFO +2 -3
- {python_package_template_pypi-0.3.3 → python_package_template_pypi-0.4.0}/README.md +0 -1
- {python_package_template_pypi-0.3.3 → python_package_template_pypi-0.4.0}/pyproject.toml +12 -5
- {python_package_template_pypi-0.3.3 → python_package_template_pypi-0.4.0}/LICENSE +0 -0
- {python_package_template_pypi-0.3.3 → python_package_template_pypi-0.4.0}/src/python_package_template/__init__.py +0 -0
- {python_package_template_pypi-0.3.3 → python_package_template_pypi-0.4.0}/src/python_package_template/main.py +0 -0
- {python_package_template_pypi-0.3.3 → python_package_template_pypi-0.4.0}/src/python_package_template/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: python-package-template-pypi
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Python package template configuration.
|
|
5
5
|
Keywords: python,template,package,github,pypi
|
|
6
6
|
Author: Daniel Mizsak
|
|
@@ -30,7 +30,7 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
30
30
|
Classifier: Programming Language :: Python :: 3.12
|
|
31
31
|
Classifier: Programming Language :: Python :: 3.13
|
|
32
32
|
Classifier: Programming Language :: Python :: 3.14
|
|
33
|
-
Requires-Dist: numpy
|
|
33
|
+
Requires-Dist: numpy>=2.4.4
|
|
34
34
|
Requires-Python: >=3.12
|
|
35
35
|
Project-URL: Repository, https://github.com/daniel-mizsak/python-package-template/
|
|
36
36
|
Project-URL: Documentation, https://daniel-mizsak.github.io/python-package-template/
|
|
@@ -43,7 +43,6 @@ Description-Content-Type: text/markdown
|
|
|
43
43
|
<kbd>
|
|
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
|
-
<a href="https://results.pre-commit.ci/latest/github/daniel-mizsak/python-package-template/main" target="_blank"><img src="https://results.pre-commit.ci/badge/github/daniel-mizsak/python-package-template/main.svg" alt="pre-commit.ci status"></a>
|
|
47
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>
|
|
48
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>
|
|
49
48
|
</kbd>
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
<kbd>
|
|
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
|
-
<a href="https://results.pre-commit.ci/latest/github/daniel-mizsak/python-package-template/main" target="_blank"><img src="https://results.pre-commit.ci/badge/github/daniel-mizsak/python-package-template/main.svg" alt="pre-commit.ci status"></a>
|
|
8
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>
|
|
9
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>
|
|
10
9
|
</kbd>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Build System
|
|
2
2
|
[build-system]
|
|
3
|
-
requires = ["uv_build"]
|
|
3
|
+
requires = ["uv_build>=0.11.3,<0.12"]
|
|
4
4
|
build-backend = "uv_build"
|
|
5
5
|
|
|
6
6
|
# Project Metadata
|
|
7
7
|
[project]
|
|
8
8
|
name = "python-package-template-pypi" # Name has to be unique on pypi.
|
|
9
|
-
version = "0.
|
|
9
|
+
version = "0.4.0" # Version set by GitHub release.
|
|
10
10
|
description = "Python package template configuration."
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
license = { file = "LICENSE" }
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"Programming Language :: Python :: 3.14",
|
|
20
20
|
]
|
|
21
21
|
requires-python = ">=3.12"
|
|
22
|
-
dependencies = ["numpy
|
|
22
|
+
dependencies = ["numpy>=2.4.4"]
|
|
23
23
|
|
|
24
24
|
[project.urls]
|
|
25
25
|
Repository = "https://github.com/daniel-mizsak/python-package-template/"
|
|
@@ -27,8 +27,15 @@
|
|
|
27
27
|
Issues = "https://github.com/daniel-mizsak/python-package-template/issues/"
|
|
28
28
|
|
|
29
29
|
[dependency-groups]
|
|
30
|
-
dev = [
|
|
31
|
-
|
|
30
|
+
dev = [
|
|
31
|
+
"coverage==7.13.5",
|
|
32
|
+
"nox==2026.4.10",
|
|
33
|
+
"prek==0.3.9",
|
|
34
|
+
"pytest==9.0.3",
|
|
35
|
+
"ruff==0.15.10",
|
|
36
|
+
"ty==0.0.31",
|
|
37
|
+
]
|
|
38
|
+
docs = ["zensical==0.0.33", "mkdocstrings-python==2.0.3"]
|
|
32
39
|
|
|
33
40
|
# Tools
|
|
34
41
|
# Uv
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|