dbrownell-parserlib 0.1.0__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.
@@ -0,0 +1,11 @@
1
+ """A sample file generated by copier - this file is safe to delete."""
2
+
3
+
4
+ def Add(a: int, b: int) -> int:
5
+ """Add two numbers."""
6
+ return a + b
7
+
8
+
9
+ def Subtract(a: int, b: int) -> int:
10
+ """Subtract two numbers."""
11
+ return a - b
@@ -0,0 +1,6 @@
1
+ # noqa: D104
2
+
3
+ from importlib.metadata import version
4
+
5
+
6
+ __version__ = version("dbrownell_ParserLib")
File without changes
@@ -0,0 +1,85 @@
1
+ Metadata-Version: 2.3
2
+ Name: dbrownell-parserlib
3
+ Version: 0.1.0
4
+ Summary: Functionality useful when creating parsers.
5
+ Author: Dave Brownell
6
+ Author-email: Dave Brownell <github@DavidBrownell.com>
7
+ License: MIT
8
+ Classifier: Operating System :: MacOS
9
+ Classifier: Operating System :: Microsoft :: Windows
10
+ Classifier: Operating System :: POSIX :: Linux
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3.14
13
+ Requires-Python: >=3.14
14
+ Project-URL: Homepage, https://github.com/davidbrownell/dbrownell_ParserLib
15
+ Project-URL: Documentation, https://github.com/davidbrownell/dbrownell_ParserLib
16
+ Project-URL: Repository, https://github.com/davidbrownell/dbrownell_ParserLib
17
+ Description-Content-Type: text/markdown
18
+
19
+ **Project:**
20
+ [![License](https://img.shields.io/github/license/davidbrownell/dbrownell_ParserLib?color=dark-green)](https://github.com/davidbrownell/dbrownell_ParserLib/blob/master/LICENSE)
21
+
22
+ **Package:**
23
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/dbrownell_ParserLib?color=dark-green)](https://pypi.org/project/dbrownell_ParserLib/)
24
+ [![PyPI - Version](https://img.shields.io/pypi/v/dbrownell_ParserLib?color=dark-green)](https://pypi.org/project/dbrownell_ParserLib/)
25
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/dbrownell_ParserLib)](https://pypistats.org/packages/dbrownell-parserlib)
26
+
27
+ **Development:**
28
+ [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
29
+ [![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
30
+ [![ty](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ty/main/assets/badge/v0.json)](https://github.com/astral-sh/ty)
31
+ [![pytest](https://img.shields.io/badge/pytest-enabled-brightgreen)](https://docs.pytest.org/)
32
+ [![CI](https://github.com/davidbrownell/dbrownell_ParserLib/actions/workflows/CICD.yml/badge.svg)](https://github.com/davidbrownell/dbrownell_ParserLib/actions/workflows/CICD.yml)
33
+ [![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/davidbrownell/f15146b1b8fdc0a5d45ac0eb786a84f7/raw/dbrownell_ParserLib_code_coverage.json)](https://github.com/davidbrownell/dbrownell_ParserLib/actions)
34
+ [![GitHub commit activity](https://img.shields.io/github/commit-activity/y/davidbrownell/dbrownell_ParserLib?color=dark-green)](https://github.com/davidbrownell/dbrownell_ParserLib/commits/main/)
35
+
36
+ <!-- Content above this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->
37
+
38
+ ## Contents
39
+ - [Overview](#overview)
40
+ - [Installation](#installation)
41
+ - [Development](#development)
42
+ - [Additional Information](#additional-information)
43
+ - [License](#license)
44
+
45
+ ## Overview
46
+ TODO: Complete this section
47
+
48
+ ### How to use `dbrownell_ParserLib`
49
+ TODO: Complete this section
50
+
51
+ <!-- Content below this delimiter will be copied to the generated README.md file. DO NOT REMOVE THIS COMMENT, as it will cause regeneration to fail. -->
52
+
53
+ ## Installation
54
+
55
+ | Installation Method | Command |
56
+ | --- | --- |
57
+ | Via [uv](https://github.com/astral-sh/uv) | `uv add dbrownell_ParserLib` |
58
+ | Via [pip](https://pip.pypa.io/en/stable/) | `pip install dbrownell_ParserLib` |
59
+
60
+ ### Verifying Signed Artifacts
61
+ Artifacts are signed and verified using [py-minisign](https://github.com/x13a/py-minisign) and the public key in the file `./minisign_key.pub`.
62
+
63
+ To verify that an artifact is valid, visit [the latest release](https://github.com/davidbrownell/dbrownell_ParserLib/releases/latest) and download the `.minisign` signature file that corresponds to the artifact, then run the following command, replacing `<filename>` with the name of the artifact to be verified:
64
+
65
+ ```shell
66
+ uv run --with py-minisign python -c "import minisign; minisign.PublicKey.from_file('minisign_key.pub').verify_file('<filename>'); print('The file has been verified.')"
67
+ ```
68
+
69
+ ## Development
70
+ Please visit [Contributing](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/CONTRIBUTING.md) and [Development](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/DEVELOPMENT.md) for information on contributing to this project.
71
+
72
+ ## Additional Information
73
+ Additional information can be found at these locations.
74
+
75
+ | Title | Document | Description |
76
+ | --- | --- | --- |
77
+ | Code of Conduct | [CODE_OF_CONDUCT.md](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/CODE_OF_CONDUCT.md) | Information about the norms, rules, and responsibilities we adhere to when participating in this open source community. |
78
+ | Contributing | [CONTRIBUTING.md](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/CONTRIBUTING.md) | Information about contributing to this project. |
79
+ | Development | [DEVELOPMENT.md](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/DEVELOPMENT.md) | Information about development activities involved in making changes to this project. |
80
+ | Governance | [GOVERNANCE.md](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/GOVERNANCE.md) | Information about how this project is governed. |
81
+ | Maintainers | [MAINTAINERS.md](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/MAINTAINERS.md) | Information about individuals who maintain this project. |
82
+ | Security | [SECURITY.md](https://github.com/davidbrownell/dbrownell_ParserLib/blob/main/SECURITY.md) | Information about how to privately report security issues associated with this project. |
83
+
84
+ ## License
85
+ `dbrownell_ParserLib` is licensed under the <a href="https://choosealicense.com/licenses/MIT/" target="_blank">MIT</a> license.
@@ -0,0 +1,6 @@
1
+ dbrownell_ParserLib/UvScaffolding_sample_file.py,sha256=SN-2kAfeHK9MIONxV5ezVkYctXyIf-XyzSUFYPfRdG4,237
2
+ dbrownell_ParserLib/__init__.py,sha256=pcfjzJgA1pjfmjzjbwgvPaeF_637yNfigoinWIlCCj0,100
3
+ dbrownell_ParserLib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ dbrownell_parserlib-0.1.0.dist-info/WHEEL,sha256=oBsDExVIEya4llboy9Ce1l6on8xt3GrtT29y6pYVypw,81
5
+ dbrownell_parserlib-0.1.0.dist-info/METADATA,sha256=wmYsa6Red8XE_IRQgzm41iqGIkb7Zbjc4bDyY5kuQ3s,5791
6
+ dbrownell_parserlib-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.11.23
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any