agentable 0.1.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.
@@ -0,0 +1,6 @@
1
+ Copyright (c) Agentable. All rights reserved.
2
+
3
+ This software is proprietary and confidential.
4
+
5
+ No part of this software may be used, copied, modified, distributed, or
6
+ reproduced except as expressly authorized by Agentable in writing.
@@ -0,0 +1,69 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentable
3
+ Version: 0.1.0
4
+ Summary: Official Python package for Agentable.
5
+ Project-URL: Homepage, https://agentable.ai
6
+ Project-URL: Documentation, https://agentable.ai/docs
7
+ Project-URL: Issues, https://agentable.ai/support
8
+ Author: Agentable
9
+ License: Proprietary
10
+ License-File: LICENSE
11
+ Keywords: agentable,agents,cli
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: Other/Proprietary License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3 :: Only
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Topic :: Software Development :: Libraries
24
+ Classifier: Topic :: Utilities
25
+ Requires-Python: >=3.9
26
+ Description-Content-Type: text/markdown
27
+
28
+ # agentable
29
+
30
+ Official Python package for Agentable.
31
+
32
+ ## Status
33
+
34
+ `agentable` is currently a bootstrap release.
35
+
36
+ This package is published as the official Python entry for Agentable on PyPI.
37
+ It is intentionally minimal at this stage.
38
+
39
+ Future releases are expected to distribute the official Agentable CLI and related binaries.
40
+
41
+ ## Installation
42
+
43
+ ```bash
44
+ pip install agentable
45
+ ```
46
+
47
+ ## Usage
48
+
49
+ ```bash
50
+ agentable
51
+ agentable --version
52
+ python -m agentable
53
+ ```
54
+
55
+ ## Notes
56
+
57
+ - This is the official `agentable` package on PyPI.
58
+ - This package is currently minimal by design.
59
+ - Source code for Agentable is not published at this time.
60
+
61
+ ## Links
62
+
63
+ - Homepage: https://agentable.ai
64
+ - Documentation: https://agentable.ai/docs
65
+ - Support: https://agentable.ai/support
66
+
67
+ ## License
68
+
69
+ Proprietary.
@@ -0,0 +1,42 @@
1
+ # agentable
2
+
3
+ Official Python package for Agentable.
4
+
5
+ ## Status
6
+
7
+ `agentable` is currently a bootstrap release.
8
+
9
+ This package is published as the official Python entry for Agentable on PyPI.
10
+ It is intentionally minimal at this stage.
11
+
12
+ Future releases are expected to distribute the official Agentable CLI and related binaries.
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ pip install agentable
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```bash
23
+ agentable
24
+ agentable --version
25
+ python -m agentable
26
+ ```
27
+
28
+ ## Notes
29
+
30
+ - This is the official `agentable` package on PyPI.
31
+ - This package is currently minimal by design.
32
+ - Source code for Agentable is not published at this time.
33
+
34
+ ## Links
35
+
36
+ - Homepage: https://agentable.ai
37
+ - Documentation: https://agentable.ai/docs
38
+ - Support: https://agentable.ai/support
39
+
40
+ ## License
41
+
42
+ Proprietary.
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.24.0"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentable"
7
+ version = "0.1.0"
8
+ description = "Official Python package for Agentable."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ license = { text = "Proprietary" }
12
+ authors = [
13
+ { name = "Agentable" }
14
+ ]
15
+ keywords = ["agentable", "cli", "agents"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Environment :: Console",
19
+ "Intended Audience :: Developers",
20
+ "License :: Other/Proprietary License",
21
+ "Operating System :: OS Independent",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3 :: Only",
24
+ "Programming Language :: Python :: 3.9",
25
+ "Programming Language :: Python :: 3.10",
26
+ "Programming Language :: Python :: 3.11",
27
+ "Programming Language :: Python :: 3.12",
28
+ "Topic :: Software Development :: Libraries",
29
+ "Topic :: Utilities"
30
+ ]
31
+
32
+ [project.urls]
33
+ Homepage = "https://agentable.ai"
34
+ Documentation = "https://agentable.ai/docs"
35
+ Issues = "https://agentable.ai/support"
36
+
37
+ [project.scripts]
38
+ agentable = "agentable.cli:main"
39
+
40
+ [tool.hatch.build.targets.wheel]
41
+ packages = ["src/agentable"]
@@ -0,0 +1,3 @@
1
+ __all__ = ["__version__"]
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,4 @@
1
+ from agentable.cli import main
2
+
3
+ if __name__ == "__main__":
4
+ raise SystemExit(main())
@@ -0,0 +1,28 @@
1
+ import argparse
2
+
3
+ from agentable import __version__
4
+
5
+
6
+ def build_parser() -> argparse.ArgumentParser:
7
+ parser = argparse.ArgumentParser(
8
+ prog="agentable",
9
+ description="Official Python package for Agentable.",
10
+ )
11
+ parser.add_argument(
12
+ "--version",
13
+ action="version",
14
+ version=f"%(prog)s {__version__}",
15
+ )
16
+ return parser
17
+
18
+
19
+ def main() -> int:
20
+ parser = build_parser()
21
+ parser.parse_args()
22
+
23
+ print("Agentable")
24
+ print(f"Version: {__version__}")
25
+ print("Status: bootstrap release")
26
+ print("This is the official Agentable package on PyPI.")
27
+ print("Future releases will distribute the official Agentable CLI and related binaries.")
28
+ return 0