mappingtools 0.0.2__tar.gz → 0.0.3__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.
- {mappingtools-0.0.2 → mappingtools-0.0.3}/PKG-INFO +2 -4
- {mappingtools-0.0.2 → mappingtools-0.0.3}/pyproject.toml +2 -4
- {mappingtools-0.0.2 → mappingtools-0.0.3}/.coveragerc +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/.github/dependabot.yml +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/.github/workflows/publish.yml +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/.github/workflows/test-beta.yml +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/.github/workflows/test.yml +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/.gitignore +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/LICENSE +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/README.md +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/src/mappingtools.py +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/tests/test_dictify.py +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/tests/test_distinct.py +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/tests/test_inverse.py +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/tests/test_keep.py +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/tests/test_nested_defaultdict.py +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/tests/test_remove.py +0 -0
- {mappingtools-0.0.2 → mappingtools-0.0.3}/tests/test_unwrap.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: mappingtools
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.3
|
|
4
4
|
Summary: MappingTools. Do stuff with Mappings
|
|
5
5
|
Project-URL: Homepage, https://erivlis.github.io/mappingtools
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/erivlis/mappingtools/issues
|
|
@@ -16,15 +16,13 @@ Classifier: Natural Language :: English
|
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Classifier: Programming Language :: Python :: 3
|
|
18
18
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
22
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
25
23
|
Classifier: Topic :: Software Development :: Libraries
|
|
26
24
|
Classifier: Typing :: Typed
|
|
27
|
-
Requires-Python: >=3.
|
|
25
|
+
Requires-Python: >=3.10
|
|
28
26
|
Provides-Extra: dev
|
|
29
27
|
Requires-Dist: ruff; extra == 'dev'
|
|
30
28
|
Provides-Extra: docs
|
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mappingtools"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.3"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name = "Eran Rivlis", email = "eran@rivlis.info" },
|
|
6
6
|
]
|
|
7
7
|
description = "MappingTools. Do stuff with Mappings"
|
|
8
8
|
readme = "README.md"
|
|
9
|
-
requires-python = ">=3.
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
10
|
classifiers = [
|
|
11
11
|
"Development Status :: 4 - Beta",
|
|
12
12
|
"Intended Audience :: Developers",
|
|
13
13
|
"Intended Audience :: Information Technology",
|
|
14
14
|
"Programming Language :: Python :: 3",
|
|
15
|
-
"Programming Language :: Python :: 3.8",
|
|
16
|
-
"Programming Language :: Python :: 3.9",
|
|
17
15
|
"Programming Language :: Python :: 3.10",
|
|
18
16
|
"Programming Language :: Python :: 3.11",
|
|
19
17
|
"Programming Language :: Python :: 3.12",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|