footman 0.0.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.
- footman-0.0.1/PKG-INFO +30 -0
- footman-0.0.1/README.md +17 -0
- footman-0.0.1/pyproject.toml +21 -0
- footman-0.0.1/src/footman/__init__.py +10 -0
footman-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: footman
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A task runner with typed commands, nested groups, and instant shell completion. Under construction.
|
|
5
|
+
Keywords: task-runner,cli,completion,duty,typer
|
|
6
|
+
Author: Willem Kokke
|
|
7
|
+
Author-email: Willem Kokke <willem@humain-studios.com>
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# footman
|
|
15
|
+
|
|
16
|
+
A task runner with the soul of [duty](https://pawamoy.github.io/duty/)
|
|
17
|
+
and the UX of [typer](https://typer.tiangolo.com/): typed function
|
|
18
|
+
signatures become real flags, modules become nested command groups,
|
|
19
|
+
and shell completion answers from a cached manifest in ~18 ms —
|
|
20
|
+
without importing your code.
|
|
21
|
+
|
|
22
|
+
```text
|
|
23
|
+
fm lint --fix
|
|
24
|
+
fm workspace mount --share <TAB> # main scratch archive
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Status: under construction.** This release claims the name for a
|
|
28
|
+
project in active development; the completion-manifest architecture
|
|
29
|
+
is prototyped and validated. The `footman` and `fm` commands
|
|
30
|
+
currently just introduce themselves.
|
footman-0.0.1/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# footman
|
|
2
|
+
|
|
3
|
+
A task runner with the soul of [duty](https://pawamoy.github.io/duty/)
|
|
4
|
+
and the UX of [typer](https://typer.tiangolo.com/): typed function
|
|
5
|
+
signatures become real flags, modules become nested command groups,
|
|
6
|
+
and shell completion answers from a cached manifest in ~18 ms —
|
|
7
|
+
without importing your code.
|
|
8
|
+
|
|
9
|
+
```text
|
|
10
|
+
fm lint --fix
|
|
11
|
+
fm workspace mount --share <TAB> # main scratch archive
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**Status: under construction.** This release claims the name for a
|
|
15
|
+
project in active development; the completion-manifest architecture
|
|
16
|
+
is prototyped and validated. The `footman` and `fm` commands
|
|
17
|
+
currently just introduce themselves.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["uv_build>=0.11,<0.13"]
|
|
3
|
+
build-backend = "uv_build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "footman"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A task runner with typed commands, nested groups, and instant shell completion. Under construction."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
authors = [{ name = "Willem Kokke", email = "willem@humain-studios.com" }]
|
|
12
|
+
keywords = ["task-runner", "cli", "completion", "duty", "typer"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.scripts]
|
|
20
|
+
footman = "footman:main"
|
|
21
|
+
fm = "footman:main"
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""footman — a task runner with typed commands and instant completion.
|
|
2
|
+
|
|
3
|
+
Under construction: this release claims the name; the tool follows.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
__version__ = "0.0.1"
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def main() -> None:
|
|
10
|
+
print(f"footman {__version__} — the footman is still dressing; nothing to run yet.")
|