none-shall-parse 0.2.2__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.
- {none_shall_parse-0.2.2 → none_shall_parse-0.4.0}/PKG-INFO +3 -2
- {none_shall_parse-0.2.2 → none_shall_parse-0.4.0}/README.md +1 -1
- {none_shall_parse-0.2.2 → none_shall_parse-0.4.0}/pyproject.toml +4 -2
- {none_shall_parse-0.2.2 → none_shall_parse-0.4.0}/src/none_shall_parse/__init__.py +1 -1
- none_shall_parse-0.4.0/src/none_shall_parse/dates.py +682 -0
- none_shall_parse-0.4.0/src/none_shall_parse/imeis.py +212 -0
- {none_shall_parse-0.2.2 → none_shall_parse-0.4.0}/src/none_shall_parse/lists.py +2 -3
- {none_shall_parse-0.2.2 → none_shall_parse-0.4.0}/src/none_shall_parse/parse.py +8 -9
- none_shall_parse-0.4.0/src/none_shall_parse/strings.py +248 -0
- none_shall_parse-0.4.0/src/none_shall_parse/types.py +32 -0
- none_shall_parse-0.2.2/src/none_shall_parse/strings.py +0 -131
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: none-shall-parse
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Trinity Shared Python utilities.
|
|
5
5
|
Author: Andries Niemandt, Jan Badenhorst
|
|
6
6
|
Author-email: Andries Niemandt <andries.niemandt@trintel.co.za>, Jan Badenhorst <jan@trintel.co.za>
|
|
@@ -8,6 +8,7 @@ License: MIT
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Dist: pendulum
|
|
11
12
|
Requires-Dist: pytest>=8.0.0 ; extra == 'dev'
|
|
12
13
|
Requires-Dist: ruff>=0.12.3 ; extra == 'dev'
|
|
13
14
|
Requires-Dist: isort ; extra == 'dev'
|
|
@@ -53,7 +54,7 @@ pip install none-shall-parse
|
|
|
53
54
|
|
|
54
55
|
## Development Quick Start
|
|
55
56
|
|
|
56
|
-
#### To build
|
|
57
|
+
#### To build and publish to pypi:
|
|
57
58
|
|
|
58
59
|
Update the version in the `pyproject.toml` file, then:
|
|
59
60
|
```bash
|
|
@@ -4,7 +4,7 @@ build-backend = "uv_build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "none-shall-parse"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.4.0"
|
|
8
8
|
description = "Trinity Shared Python utilities."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
@@ -18,7 +18,9 @@ classifiers = [
|
|
|
18
18
|
"Operating System :: OS Independent",
|
|
19
19
|
]
|
|
20
20
|
requires-python = ">=3.12"
|
|
21
|
-
dependencies = [
|
|
21
|
+
dependencies = [
|
|
22
|
+
"pendulum",
|
|
23
|
+
]
|
|
22
24
|
|
|
23
25
|
[project.optional-dependencies]
|
|
24
26
|
dev = [
|