none-shall-parse 0.2.0__py3-none-any.whl → 0.2.2__py3-none-any.whl

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.
@@ -1,8 +1,15 @@
1
1
  """Trinity Shared Python utilities.
2
2
 
3
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
4
12
  """
5
13
 
6
- __version__ = "0.1.0"
7
- __author__ = "Jan Badenhorst, Andries Niemandt"
8
- __email__ = "jan@trintel.co.za"
14
+ __author__ = "Andries Niemandt, Jan Badenhorst"
15
+ __email__ = "andries.niemandt@trintel.co.za, jan@trintel.co.za"
@@ -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,7 @@
1
+ none_shall_parse/__init__.py,sha256=ElNUb98vffLm3_IvHJWLklIPWvr0p84SdpVLHof2n1o,548
2
+ none_shall_parse/lists.py,sha256=IndbwxaxvByFtW88AtHyNOTDDp-E1EWLz_KY7OCcBIU,1712
3
+ none_shall_parse/parse.py,sha256=99A_Xo3n2I2zGsgJcobjRPhgNOO1HytpZHs_hmr7t2c,6878
4
+ none_shall_parse/strings.py,sha256=_fvsQtUyjqmPj_c4NjeOsAPrd5LOzNb4SX16-ZyZIEA,3511
5
+ none_shall_parse-0.2.2.dist-info/WHEEL,sha256=4n27za1eEkOnA7dNjN6C5-O2rUiw6iapszm14Uj-Qmk,79
6
+ none_shall_parse-0.2.2.dist-info/METADATA,sha256=iCpKl9FrsBF2jCeC9aciK7Wc0oMWciAxfgx-obdobvg,1676
7
+ none_shall_parse-0.2.2.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.8.15
2
+ Generator: uv 0.8.13
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -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,7 +0,0 @@
1
- none_shall_parse/__init__.py,sha256=fQoiVT7cbs948QuGfgYdD5zlWqk0Coe29kSEzKu595s,198
2
- none_shall_parse/lists.py,sha256=IndbwxaxvByFtW88AtHyNOTDDp-E1EWLz_KY7OCcBIU,1712
3
- none_shall_parse/parse.py,sha256=99A_Xo3n2I2zGsgJcobjRPhgNOO1HytpZHs_hmr7t2c,6878
4
- none_shall_parse/strings.py,sha256=_fvsQtUyjqmPj_c4NjeOsAPrd5LOzNb4SX16-ZyZIEA,3511
5
- none_shall_parse-0.2.0.dist-info/WHEEL,sha256=Jb20R3Ili4n9P1fcwuLup21eQ5r9WXhs4_qy7VTrgPI,79
6
- none_shall_parse-0.2.0.dist-info/METADATA,sha256=kVhMdfc1fyV9bv0kgFKJQZ_VTr2u8b5zQSgW8C5VhR8,1196
7
- none_shall_parse-0.2.0.dist-info/RECORD,,