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