none-shall-parse 0.2.0__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.
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.3
2
+ Name: none-shall-parse
3
+ Version: 0.2.2
4
+ Summary: Trinity Shared Python utilities.
5
+ Author: Andries Niemandt, Jan Badenhorst
6
+ Author-email: Andries Niemandt <andries.niemandt@trintel.co.za>, Jan Badenhorst <jan@trintel.co.za>
7
+ License: MIT
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Dist: pytest>=8.0.0 ; extra == 'dev'
12
+ Requires-Dist: ruff>=0.12.3 ; extra == 'dev'
13
+ Requires-Dist: isort ; extra == 'dev'
14
+ Requires-Dist: flake8 ; extra == 'dev'
15
+ Requires-Dist: uv-build ; extra == 'dev'
16
+ Requires-Python: >=3.12
17
+ Project-URL: Homepage, https://github.com/trinity-telecomms/tpu
18
+ Project-URL: Issues, https://github.com/trinity-telecomms/tpu/issues
19
+ Provides-Extra: dev
20
+ Description-Content-Type: text/markdown
21
+
22
+ # none-shall-parse
23
+
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
33
+
34
+ ## Installation
35
+
36
+ Using `uv`:
37
+
38
+ ```bash
39
+ uv add none-shall-parse
40
+ ```
41
+
42
+ Using `pip` with `uv`:
43
+
44
+ ```bash
45
+ uv pip install none-shall-parse
46
+ ```
47
+
48
+ Using `pip`:
49
+
50
+ ```bash
51
+ pip install none-shall-parse
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.0"
7
+ version = "0.2.2"
8
8
  description = "Trinity Shared Python utilities."
9
9
  readme = "README.md"
10
10
  authors = [
11
- { name = "Jan Badenhorst", email = "jan.badenhorst@trintel.co.za" },
12
- { name = "Andries Niemandt", email = "andries.niemandt@trintel.co.za" }
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"
@@ -1,47 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: none-shall-parse
3
- Version: 0.2.0
4
- Summary: Trinity Shared Python utilities.
5
- Author: Jan Badenhorst, Andries Niemandt
6
- Author-email: Jan Badenhorst <jan.badenhorst@trintel.co.za>, Andries Niemandt <andries.niemandt@trintel.co.za>
7
- License: MIT
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- Requires-Dist: pytest>=8.0.0 ; extra == 'dev'
12
- Requires-Dist: ruff>=0.12.3 ; extra == 'dev'
13
- Requires-Dist: isort ; extra == 'dev'
14
- Requires-Dist: flake8 ; extra == 'dev'
15
- Requires-Dist: uv-build ; extra == 'dev'
16
- Requires-Dist: sphinx ; extra == 'docs'
17
- Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
18
- Requires-Python: >=3.12
19
- Project-URL: Homepage, https://github.com/trinity-telecomms/tpu
20
- Project-URL: Issues, https://github.com/trinity-telecomms/tpu/issues
21
- Provides-Extra: dev
22
- Provides-Extra: docs
23
- Description-Content-Type: text/markdown
24
-
25
- # none_shall_parse
26
-
27
- Trinity Shared Python utilities.
28
-
29
- ## Installation
30
-
31
- Using `uv`:
32
-
33
- ```bash
34
- uv add none_shall_parse
35
- ```
36
-
37
- Using `pip` with `uv`:
38
-
39
- ```bash
40
- uv pip install none_shall_parse
41
- ```
42
-
43
- Using `pip`:
44
-
45
- ```bash
46
- pip install none_shall_parse
47
- ```
@@ -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
- ```
@@ -1,8 +0,0 @@
1
- """Trinity Shared Python utilities.
2
-
3
- A collection of shared utilities for Trinity projects.
4
- """
5
-
6
- __version__ = "0.1.0"
7
- __author__ = "Jan Badenhorst, Andries Niemandt"
8
- __email__ = "jan@trintel.co.za"