ipaddons 0.3.0__tar.gz → 0.3.2__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.
- {ipaddons-0.3.0 → ipaddons-0.3.2}/.gitignore +1 -1
- {ipaddons-0.3.0 → ipaddons-0.3.2}/PKG-INFO +3 -3
- {ipaddons-0.3.0 → ipaddons-0.3.2}/pyproject.toml +9 -3
- {ipaddons-0.3.0 → ipaddons-0.3.2}/src/ipaddons/_version.py +2 -2
- {ipaddons-0.3.0 → ipaddons-0.3.2}/LICENSE +0 -0
- {ipaddons-0.3.0 → ipaddons-0.3.2}/README.md +0 -0
- {ipaddons-0.3.0 → ipaddons-0.3.2}/src/ipaddons/__init__.py +0 -0
- {ipaddons-0.3.0 → ipaddons-0.3.2}/src/ipaddons/py.typed +0 -0
- {ipaddons-0.3.0 → ipaddons-0.3.2}/src/ipaddons/tools.py +0 -0
- {ipaddons-0.3.0 → ipaddons-0.3.2}/tests/test_ip_allocation.py +0 -0
|
@@ -100,7 +100,7 @@ ipython_config.py
|
|
|
100
100
|
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
101
101
|
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
102
102
|
# commonly ignored for libraries.
|
|
103
|
-
uv.lock
|
|
103
|
+
#uv.lock
|
|
104
104
|
|
|
105
105
|
# poetry
|
|
106
106
|
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ipaddons
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Additional tools for the ipaddress standard library module
|
|
5
|
-
Project-URL:
|
|
6
|
-
Project-URL: homepage, https://
|
|
5
|
+
Project-URL: documentation, https://ipaddons.readthedocs.io/
|
|
6
|
+
Project-URL: homepage, https://gitlab.com/sebastianw/ipaddons/
|
|
7
7
|
Project-URL: repository, https://gitlab.com/sebastianw/ipaddons/
|
|
8
8
|
Author-email: Sebastian Wiesinger <sebastian@karotte.org>
|
|
9
9
|
License-Expression: MIT
|
|
@@ -25,8 +25,8 @@ classifiers = [
|
|
|
25
25
|
dynamic = [ "version" ]
|
|
26
26
|
dependencies = [ ]
|
|
27
27
|
|
|
28
|
-
urls.
|
|
29
|
-
urls.homepage = "https://
|
|
28
|
+
urls.documentation = "https://ipaddons.readthedocs.io/"
|
|
29
|
+
urls.homepage = "https://gitlab.com/sebastianw/ipaddons/"
|
|
30
30
|
urls.repository = "https://gitlab.com/sebastianw/ipaddons/"
|
|
31
31
|
|
|
32
32
|
[dependency-groups]
|
|
@@ -35,8 +35,8 @@ dev = [
|
|
|
35
35
|
"pytest>=8.4.2",
|
|
36
36
|
]
|
|
37
37
|
docs = [
|
|
38
|
+
"furo>=2025.9.25",
|
|
38
39
|
"sphinx>=8.2.3",
|
|
39
|
-
"sphinx-rtd-theme>=3.0.2",
|
|
40
40
|
]
|
|
41
41
|
|
|
42
42
|
[tool.hatch.version]
|
|
@@ -51,6 +51,12 @@ local_scheme = "no-local-version"
|
|
|
51
51
|
[tool.hatch.build.targets.sdist]
|
|
52
52
|
only-include = [ "src/ipaddons", "tests" ]
|
|
53
53
|
|
|
54
|
+
[[tool.uv.index]]
|
|
55
|
+
name = "testpypi"
|
|
56
|
+
url = "https://test.pypi.org/simple/"
|
|
57
|
+
publish-url = "https://test.pypi.org/legacy/"
|
|
58
|
+
explicit = true
|
|
59
|
+
|
|
54
60
|
[tool.ruff]
|
|
55
61
|
line-length = 120
|
|
56
62
|
extend-exclude = [ "docs", "src/*/_version.py" ]
|
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.3.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 3,
|
|
31
|
+
__version__ = version = '0.3.2'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 3, 2)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|