acture 0.0.0__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.
- acture-0.0.0/PKG-INFO +24 -0
- acture-0.0.0/README.md +11 -0
- acture-0.0.0/acture/__init__.py +10 -0
- acture-0.0.0/pyproject.toml +21 -0
acture-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: acture
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: acture name reserved; full library coming in v0.1. See https://github.com/thorwhalen/acture
|
|
5
|
+
Project-URL: Homepage, https://github.com/thorwhalen/acture
|
|
6
|
+
Project-URL: Repository, https://github.com/thorwhalen/acture
|
|
7
|
+
Project-URL: Issues, https://github.com/thorwhalen/acture/issues
|
|
8
|
+
Author: Thor Whalen
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
Keywords: ai-tools,command-dispatch,command-palette,mcp,schema
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# acture (Python — name reserved)
|
|
15
|
+
|
|
16
|
+
> Name reserved. Full library coming in v0.1.
|
|
17
|
+
|
|
18
|
+
Acture is a typed, schema-driven command dispatch library, primarily delivered as a TypeScript/npm package. This PyPI release v0.0.0 reserves the `acture` name in the Python package index. A Python companion package may follow post-v1 (research on the cross-language story is not yet complete).
|
|
19
|
+
|
|
20
|
+
See https://github.com/thorwhalen/acture for status.
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
|
|
24
|
+
Apache-2.0
|
acture-0.0.0/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# acture (Python — name reserved)
|
|
2
|
+
|
|
3
|
+
> Name reserved. Full library coming in v0.1.
|
|
4
|
+
|
|
5
|
+
Acture is a typed, schema-driven command dispatch library, primarily delivered as a TypeScript/npm package. This PyPI release v0.0.0 reserves the `acture` name in the Python package index. A Python companion package may follow post-v1 (research on the cross-language story is not yet complete).
|
|
6
|
+
|
|
7
|
+
See https://github.com/thorwhalen/acture for status.
|
|
8
|
+
|
|
9
|
+
## License
|
|
10
|
+
|
|
11
|
+
Apache-2.0
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""acture v0.0.0 — name reserved; full library coming in v0.1.
|
|
2
|
+
|
|
3
|
+
The acture library is a TypeScript/npm project. This Python package reserves
|
|
4
|
+
the name on PyPI. A Python companion package may be released post-v1.
|
|
5
|
+
|
|
6
|
+
See https://github.com/thorwhalen/acture for status.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.0"
|
|
10
|
+
reserved = True
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "acture"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "acture name reserved; full library coming in v0.1. See https://github.com/thorwhalen/acture"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [{ name = "Thor Whalen" }]
|
|
13
|
+
keywords = ["command-dispatch", "command-palette", "schema", "mcp", "ai-tools"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/thorwhalen/acture"
|
|
17
|
+
Repository = "https://github.com/thorwhalen/acture"
|
|
18
|
+
Issues = "https://github.com/thorwhalen/acture/issues"
|
|
19
|
+
|
|
20
|
+
[tool.hatch.build.targets.wheel]
|
|
21
|
+
packages = ["acture"]
|