AirForm 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.
airform/__init__.py ADDED
@@ -0,0 +1 @@
1
+ """Top-level package for AirForm."""
airform/__main__.py ADDED
@@ -0,0 +1,4 @@
1
+ from .cli import app
2
+
3
+ if __name__ == "__main__":
4
+ app()
airform/cli.py ADDED
@@ -0,0 +1,21 @@
1
+ """Console script for airform."""
2
+
3
+ import typer
4
+ from rich.console import Console
5
+
6
+ from airform import utils
7
+
8
+ app = typer.Typer()
9
+ console = Console()
10
+
11
+
12
+ @app.command()
13
+ def main() -> None:
14
+ """Console script for airform."""
15
+ console.print("Replace this message by putting your code into airform.cli.main")
16
+ console.print("See Typer documentation at https://typer.tiangolo.com/")
17
+ utils.do_something_useful()
18
+
19
+
20
+ if __name__ == "__main__":
21
+ app()
airform/py.typed ADDED
@@ -0,0 +1 @@
1
+ # Marker file for PEP 561
airform/utils.py ADDED
@@ -0,0 +1,2 @@
1
+ def do_something_useful() -> None:
2
+ print("Replace this with a utility function")
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: AirForm
3
+ Version: 0.1.0
4
+ Summary: Pydantic-native form validation and rendering. Define a model, get a validated, rendered HTML form. Works with or without Air web framework.
5
+ Project-URL: bugs, https://github.com/feldroy/AirForm/issues
6
+ Project-URL: changelog, https://github.com/feldroy/AirForm/releases
7
+ Project-URL: documentation, https://feldroy.github.io/AirForm/
8
+ Project-URL: homepage, https://github.com/feldroy/AirForm
9
+ Author-email: "Audrey M. Roy Greenfeld" <audrey@feldroy.com>
10
+ Maintainer-email: "Audrey M. Roy Greenfeld" <audrey@feldroy.com>
11
+ License: MIT
12
+ License-File: LICENSE
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Typing :: Typed
16
+ Requires-Python: >=3.12
17
+ Requires-Dist: rich
18
+ Requires-Dist: typer
19
+ Description-Content-Type: text/markdown
20
+
21
+ # AirForm
22
+
23
+ ![PyPI version](https://img.shields.io/pypi/v/AirForm.svg)
24
+
25
+ Pydantic-native form validation and rendering. Define a model, get a validated, rendered HTML form. Works with or without Air web framework.
26
+
27
+ * GitHub: https://github.com/feldroy/AirForm/
28
+ * PyPI package: https://pypi.org/project/AirForm/
29
+ * Created by: **[Audrey M. Roy Greenfeld](https://audrey.feldroy.com/)** | GitHub https://github.com/audreyfeldroy | PyPI https://pypi.org/user/audreyr/
30
+ * Free software: MIT License
31
+
32
+ ## Features
33
+
34
+ * TODO
35
+
36
+ ## Documentation
37
+
38
+ Documentation is built with [Zensical](https://zensical.org/) and deployed to GitHub Pages.
39
+
40
+ * **Live site:** https://feldroy.github.io/AirForm/
41
+ * **Preview locally:** `just docs-serve` (serves at http://localhost:8000)
42
+ * **Build:** `just docs-build`
43
+
44
+ API documentation is auto-generated from docstrings using [mkdocstrings](https://mkdocstrings.github.io/).
45
+
46
+ Docs deploy automatically on push to `main` via GitHub Actions. To enable this, go to your repo's Settings > Pages and set the source to **GitHub Actions**.
47
+
48
+ ## Development
49
+
50
+ To set up for local development:
51
+
52
+ ```bash
53
+ # Clone your fork
54
+ git clone git@github.com:your_username/AirForm.git
55
+ cd AirForm
56
+
57
+ # Install in editable mode with live updates
58
+ uv tool install --editable .
59
+ ```
60
+
61
+ This installs the CLI globally but with live updates - any changes you make to the source code are immediately available when you run `airform`.
62
+
63
+ Run tests:
64
+
65
+ ```bash
66
+ uv run pytest
67
+ ```
68
+
69
+ Run quality checks (format, lint, type check, test):
70
+
71
+ ```bash
72
+ just qa
73
+ ```
74
+
75
+ ## Author
76
+
77
+ AirForm was created in 2026 by Audrey M. Roy Greenfeld.
78
+
79
+ Built with [Cookiecutter](https://github.com/cookiecutter/cookiecutter) and the [audreyfeldroy/cookiecutter-pypackage](https://github.com/audreyfeldroy/cookiecutter-pypackage) project template.
@@ -0,0 +1,10 @@
1
+ airform/__init__.py,sha256=JfbnwYQTJBDDtlx9vAa0ll3TxZyAv29YeHSyTybvc8A,37
2
+ airform/__main__.py,sha256=Qd-f8z2Q2vpiEP2x6PBFsJrpACWDVxFKQk820MhFmHo,59
3
+ airform/cli.py,sha256=xJCLnH1AilDtDVIebFoHzbG--0U-xYNqQRWPJObb3Ag,456
4
+ airform/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26
5
+ airform/utils.py,sha256=HppGIYjTTn56wTOArW3kxDDc2bMnrGVBQB2DIaoLnI4,85
6
+ airform-0.1.0.dist-info/METADATA,sha256=Hpj1vyqhrez1PbvW_JV3DcQNTA9VY2ju9BxdMJ0xZdU,2634
7
+ airform-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
8
+ airform-0.1.0.dist-info/entry_points.txt,sha256=TeUozGuIxiRNSAWrmU6pM0ybPK7DRkO4n6Jxr94LcR8,44
9
+ airform-0.1.0.dist-info/licenses/LICENSE,sha256=bmXNe-6xu11QuI5rXH3hBOesEquzT2lKLMZg6nAUQkk,1081
10
+ airform-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ airform = airform.cli:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026, Audrey M. Roy Greenfeld
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.