valid8r 0.2.8__tar.gz → 0.3.1__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.
Potentially problematic release.
This version of valid8r might be problematic. Click here for more details.
- valid8r-0.3.1/LICENSE +21 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/PKG-INFO +24 -4
- {valid8r-0.2.8 → valid8r-0.3.1}/README.md +14 -1
- {valid8r-0.2.8 → valid8r-0.3.1}/pyproject.toml +11 -3
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/__init__.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/core/__init__.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/core/combinators.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/core/maybe.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/core/parsers.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/core/validators.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/prompt/__init__.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/prompt/basic.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/py.typed +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/testing/__init__.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/testing/assertions.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/testing/generators.py +0 -0
- {valid8r-0.2.8 → valid8r-0.3.1}/valid8r/testing/mock_input.py +0 -0
valid8r-0.3.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Mike Lane
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,29 +1,42 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: valid8r
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Clean, flexible input validation for Python applications
|
|
5
5
|
License: MIT
|
|
6
|
-
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: validation,input,cli,maybe-monad,parsing,functional-programming
|
|
7
8
|
Author: Mike Lane
|
|
8
9
|
Author-email: mikelane@gmail.com
|
|
9
10
|
Requires-Python: >=3.11,<4.0
|
|
10
|
-
Classifier: Development Status ::
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
12
|
Classifier: Intended Audience :: Developers
|
|
12
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
13
15
|
Classifier: Programming Language :: Python :: 3
|
|
14
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
18
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
19
|
Classifier: Programming Language :: Python :: 3.14
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
22
|
+
Classifier: Typing :: Typed
|
|
18
23
|
Requires-Dist: email-validator (>=2.3.0,<3.0.0)
|
|
19
24
|
Requires-Dist: pydantic (>=2.0)
|
|
20
25
|
Requires-Dist: pydantic-core (>=2.27.0,<3.0.0)
|
|
21
26
|
Requires-Dist: uuid-utils (>=0.11.0,<0.12.0)
|
|
27
|
+
Project-URL: Documentation, https://valid8r.readthedocs.io/
|
|
28
|
+
Project-URL: Homepage, https://valid8r.readthedocs.io/
|
|
22
29
|
Project-URL: Repository, https://github.com/mikelane/valid8r
|
|
23
30
|
Description-Content-Type: text/markdown
|
|
24
31
|
|
|
25
32
|
# Valid8r
|
|
26
33
|
|
|
34
|
+
[](https://pypi.org/project/valid8r/)
|
|
35
|
+
[](https://pypi.org/project/valid8r/)
|
|
36
|
+
[](https://github.com/mikelane/valid8r/blob/main/LICENSE)
|
|
37
|
+
[](https://github.com/mikelane/valid8r/actions)
|
|
38
|
+
[](https://valid8r.readthedocs.io/)
|
|
39
|
+
|
|
27
40
|
A clean, flexible input validation library for Python applications.
|
|
28
41
|
|
|
29
42
|
## Features
|
|
@@ -60,10 +73,14 @@ A clean, flexible input validation library for Python applications.
|
|
|
60
73
|
|
|
61
74
|
## Installation
|
|
62
75
|
|
|
76
|
+
**Requirements**: Python 3.11 or higher
|
|
77
|
+
|
|
63
78
|
```bash
|
|
64
79
|
pip install valid8r
|
|
65
80
|
```
|
|
66
81
|
|
|
82
|
+
Valid8r supports Python 3.11, 3.12, 3.13, and 3.14.
|
|
83
|
+
|
|
67
84
|
## Quick Start
|
|
68
85
|
|
|
69
86
|
```python
|
|
@@ -242,5 +259,8 @@ poetry run tox -e bdd
|
|
|
242
259
|
```
|
|
243
260
|
|
|
244
261
|
## License
|
|
245
|
-
|
|
262
|
+
|
|
263
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
264
|
+
|
|
265
|
+
Copyright (c) 2025 Mike Lane
|
|
246
266
|
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Valid8r
|
|
2
2
|
|
|
3
|
+
[](https://pypi.org/project/valid8r/)
|
|
4
|
+
[](https://pypi.org/project/valid8r/)
|
|
5
|
+
[](https://github.com/mikelane/valid8r/blob/main/LICENSE)
|
|
6
|
+
[](https://github.com/mikelane/valid8r/actions)
|
|
7
|
+
[](https://valid8r.readthedocs.io/)
|
|
8
|
+
|
|
3
9
|
A clean, flexible input validation library for Python applications.
|
|
4
10
|
|
|
5
11
|
## Features
|
|
@@ -36,10 +42,14 @@ A clean, flexible input validation library for Python applications.
|
|
|
36
42
|
|
|
37
43
|
## Installation
|
|
38
44
|
|
|
45
|
+
**Requirements**: Python 3.11 or higher
|
|
46
|
+
|
|
39
47
|
```bash
|
|
40
48
|
pip install valid8r
|
|
41
49
|
```
|
|
42
50
|
|
|
51
|
+
Valid8r supports Python 3.11, 3.12, 3.13, and 3.14.
|
|
52
|
+
|
|
43
53
|
## Quick Start
|
|
44
54
|
|
|
45
55
|
```python
|
|
@@ -218,4 +228,7 @@ poetry run tox -e bdd
|
|
|
218
228
|
```
|
|
219
229
|
|
|
220
230
|
## License
|
|
221
|
-
|
|
231
|
+
|
|
232
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
233
|
+
|
|
234
|
+
Copyright (c) 2025 Mike Lane
|
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "valid8r"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.1"
|
|
4
4
|
description = "Clean, flexible input validation for Python applications"
|
|
5
5
|
authors = ["Mike Lane <mikelane@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
7
7
|
readme = "README.md"
|
|
8
|
+
homepage = "https://valid8r.readthedocs.io/"
|
|
8
9
|
repository = "https://github.com/mikelane/valid8r"
|
|
9
|
-
|
|
10
|
+
documentation = "https://valid8r.readthedocs.io/"
|
|
11
|
+
keywords = ["validation", "input", "cli", "maybe-monad", "parsing", "functional-programming"]
|
|
10
12
|
classifiers = [
|
|
11
|
-
"Development Status ::
|
|
13
|
+
"Development Status :: 5 - Production/Stable",
|
|
12
14
|
"Intended Audience :: Developers",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
13
17
|
"Programming Language :: Python :: 3",
|
|
14
18
|
"Programming Language :: Python :: 3.11",
|
|
15
19
|
"Programming Language :: Python :: 3.12",
|
|
16
20
|
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Programming Language :: Python :: 3.14",
|
|
22
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
23
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
24
|
+
"Typing :: Typed",
|
|
17
25
|
]
|
|
18
26
|
packages = [{include = "valid8r"}]
|
|
19
27
|
include = [{ path = "valid8r/py.typed", format = "wheel" }]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|