none-shall-parse 0.2.1__tar.gz → 0.2.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.
- {none_shall_parse-0.2.1 → none_shall_parse-0.2.2}/PKG-INFO +25 -7
- none_shall_parse-0.2.2/README.md +44 -0
- {none_shall_parse-0.2.1 → none_shall_parse-0.2.2}/pyproject.toml +3 -7
- none_shall_parse-0.2.2/src/none_shall_parse/__init__.py +15 -0
- none_shall_parse-0.2.1/README.md +0 -23
- none_shall_parse-0.2.1/src/none_shall_parse/__init__.py +0 -8
- {none_shall_parse-0.2.1 → none_shall_parse-0.2.2}/src/none_shall_parse/lists.py +0 -0
- {none_shall_parse-0.2.1 → none_shall_parse-0.2.2}/src/none_shall_parse/parse.py +0 -0
- {none_shall_parse-0.2.1 → none_shall_parse-0.2.2}/src/none_shall_parse/strings.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: none-shall-parse
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Trinity Shared Python utilities.
|
|
5
|
-
Author:
|
|
6
|
-
Author-email:
|
|
5
|
+
Author: Andries Niemandt, Jan Badenhorst
|
|
6
|
+
Author-email: Andries Niemandt <andries.niemandt@trintel.co.za>, Jan Badenhorst <jan@trintel.co.za>
|
|
7
7
|
License: MIT
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -13,18 +13,23 @@ Requires-Dist: ruff>=0.12.3 ; extra == 'dev'
|
|
|
13
13
|
Requires-Dist: isort ; extra == 'dev'
|
|
14
14
|
Requires-Dist: flake8 ; extra == 'dev'
|
|
15
15
|
Requires-Dist: uv-build ; extra == 'dev'
|
|
16
|
-
Requires-Dist: sphinx ; extra == 'docs'
|
|
17
|
-
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
|
|
18
16
|
Requires-Python: >=3.12
|
|
19
17
|
Project-URL: Homepage, https://github.com/trinity-telecomms/tpu
|
|
20
18
|
Project-URL: Issues, https://github.com/trinity-telecomms/tpu/issues
|
|
21
19
|
Provides-Extra: dev
|
|
22
|
-
Provides-Extra: docs
|
|
23
20
|
Description-Content-Type: text/markdown
|
|
24
21
|
|
|
25
22
|
# none-shall-parse
|
|
26
23
|
|
|
27
|
-
|
|
24
|
+
A collection of shared utilities for Trinity projects.
|
|
25
|
+
|
|
26
|
+
Originally intended to be parsing utilities only, this grew to include
|
|
27
|
+
other useful functions.
|
|
28
|
+
|
|
29
|
+
Named for its author Andries Niemandt — whose surname loosely
|
|
30
|
+
translates to "none". Combined this with our parsing intentions
|
|
31
|
+
to create a name which nods to the Black Knight in Monty Python's Holy Grail.
|
|
32
|
+
https://www.youtube.com/watch?v=zKhEw7nD9C4
|
|
28
33
|
|
|
29
34
|
## Installation
|
|
30
35
|
|
|
@@ -45,3 +50,16 @@ Using `pip`:
|
|
|
45
50
|
```bash
|
|
46
51
|
pip install none-shall-parse
|
|
47
52
|
```
|
|
53
|
+
|
|
54
|
+
## Development Quick Start
|
|
55
|
+
|
|
56
|
+
#### To build an publish to pypi:
|
|
57
|
+
|
|
58
|
+
Update the version in the `pyproject.toml` file, then:
|
|
59
|
+
```bash
|
|
60
|
+
uv sync --upgrade --all-extras --all-groups
|
|
61
|
+
pytest
|
|
62
|
+
rm -rf dist/ build/ *.egg-info/
|
|
63
|
+
uv build
|
|
64
|
+
uv publish
|
|
65
|
+
```
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# none-shall-parse
|
|
2
|
+
|
|
3
|
+
A collection of shared utilities for Trinity projects.
|
|
4
|
+
|
|
5
|
+
Originally intended to be parsing utilities only, this grew to include
|
|
6
|
+
other useful functions.
|
|
7
|
+
|
|
8
|
+
Named for its author Andries Niemandt — whose surname loosely
|
|
9
|
+
translates to "none". Combined this with our parsing intentions
|
|
10
|
+
to create a name which nods to the Black Knight in Monty Python's Holy Grail.
|
|
11
|
+
https://www.youtube.com/watch?v=zKhEw7nD9C4
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
Using `uv`:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
uv add none-shall-parse
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Using `pip` with `uv`:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
uv pip install none-shall-parse
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Using `pip`:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install none-shall-parse
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Development Quick Start
|
|
34
|
+
|
|
35
|
+
#### To build an publish to pypi:
|
|
36
|
+
|
|
37
|
+
Update the version in the `pyproject.toml` file, then:
|
|
38
|
+
```bash
|
|
39
|
+
uv sync --upgrade --all-extras --all-groups
|
|
40
|
+
pytest
|
|
41
|
+
rm -rf dist/ build/ *.egg-info/
|
|
42
|
+
uv build
|
|
43
|
+
uv publish
|
|
44
|
+
```
|
|
@@ -4,12 +4,12 @@ build-backend = "uv_build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "none-shall-parse"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.2"
|
|
8
8
|
description = "Trinity Shared Python utilities."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
11
|
-
{ name = "
|
|
12
|
-
{ name = "
|
|
11
|
+
{ name = "Andries Niemandt", email = "andries.niemandt@trintel.co.za" },
|
|
12
|
+
{ name = "Jan Badenhorst", email = "jan@trintel.co.za" },
|
|
13
13
|
]
|
|
14
14
|
license = {text = "MIT"}
|
|
15
15
|
classifiers = [
|
|
@@ -28,10 +28,6 @@ dev = [
|
|
|
28
28
|
"flake8",
|
|
29
29
|
"uv-build"
|
|
30
30
|
]
|
|
31
|
-
docs = [
|
|
32
|
-
"sphinx",
|
|
33
|
-
"sphinx-rtd-theme",
|
|
34
|
-
]
|
|
35
31
|
|
|
36
32
|
[project.urls]
|
|
37
33
|
Homepage = "https://github.com/trinity-telecomms/tpu"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""Trinity Shared Python utilities.
|
|
2
|
+
|
|
3
|
+
A collection of shared utilities for Trinity projects.
|
|
4
|
+
|
|
5
|
+
Originally intended to be parsing utilities, this grew to include
|
|
6
|
+
other useful functions.
|
|
7
|
+
|
|
8
|
+
Named for its author Andries Niemandt - whose surname loosely
|
|
9
|
+
translates to "none". Combined this with our parsing intentions
|
|
10
|
+
to create a name which nods to the Black Knight in Monty Python's Holy Grail.
|
|
11
|
+
https://www.youtube.com/watch?v=zKhEw7nD9C4
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__author__ = "Andries Niemandt, Jan Badenhorst"
|
|
15
|
+
__email__ = "andries.niemandt@trintel.co.za, jan@trintel.co.za"
|
none_shall_parse-0.2.1/README.md
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# none-shall-parse
|
|
2
|
-
|
|
3
|
-
Trinity Shared Python utilities.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
Using `uv`:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
uv add none-shall-parse
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
Using `pip` with `uv`:
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
uv pip install none-shall-parse
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
Using `pip`:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
pip install none-shall-parse
|
|
23
|
-
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|