agentsetup 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.
agentsetup-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentsetup
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official Python package for Agentsetup.
|
|
5
|
+
Project-URL: Homepage, https://agentable.ai
|
|
6
|
+
Author: Agentable
|
|
7
|
+
License: Proprietary
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: agents,agentsetup,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
|
+
# agentsetup
|
|
27
|
+
|
|
28
|
+
Official Python package for Agentsetup.
|
|
29
|
+
|
|
30
|
+
## Status
|
|
31
|
+
|
|
32
|
+
`agentsetup` is currently a bootstrap release.
|
|
33
|
+
|
|
34
|
+
This package is published as the official Python entry for Agentsetup on PyPI.
|
|
35
|
+
It is intentionally minimal at this stage.
|
|
36
|
+
|
|
37
|
+
Future releases are expected to distribute the official Agentsetup CLI and related binaries.
|
|
38
|
+
|
|
39
|
+
## Installation
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pip install agentsetup
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Usage
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
agentsetup
|
|
49
|
+
agentsetup --version
|
|
50
|
+
python -m agentsetup
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Notes
|
|
54
|
+
|
|
55
|
+
- This is the official `agentsetup` package on PyPI.
|
|
56
|
+
- This package is currently minimal by design.
|
|
57
|
+
- Source code for Agentsetup 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
|
+
# agentsetup
|
|
2
|
+
|
|
3
|
+
Official Python package for Agentsetup.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
`agentsetup` is currently a bootstrap release.
|
|
8
|
+
|
|
9
|
+
This package is published as the official Python entry for Agentsetup on PyPI.
|
|
10
|
+
It is intentionally minimal at this stage.
|
|
11
|
+
|
|
12
|
+
Future releases are expected to distribute the official Agentsetup CLI and related binaries.
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install agentsetup
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
agentsetup
|
|
24
|
+
agentsetup --version
|
|
25
|
+
python -m agentsetup
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Notes
|
|
29
|
+
|
|
30
|
+
- This is the official `agentsetup` package on PyPI.
|
|
31
|
+
- This package is currently minimal by design.
|
|
32
|
+
- Source code for Agentsetup 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 = "agentsetup"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Official Python package for Agentsetup."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Agentable" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["agentsetup", "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
|
+
agentsetup = "agentsetup.cli:main"
|
|
37
|
+
|
|
38
|
+
[tool.hatch.build.targets.wheel]
|
|
39
|
+
packages = ["src/agentsetup"]
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import argparse
|
|
2
|
+
|
|
3
|
+
from agentsetup import __version__
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def build_parser() -> argparse.ArgumentParser:
|
|
7
|
+
parser = argparse.ArgumentParser(
|
|
8
|
+
prog="agentsetup",
|
|
9
|
+
description="Official Python package for Agentsetup.",
|
|
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("Agentsetup")
|
|
24
|
+
print(f"Version: {__version__}")
|
|
25
|
+
print("Status: bootstrap release")
|
|
26
|
+
print("This is the official Agentsetup package on PyPI.")
|
|
27
|
+
print("Future releases will distribute the official Agentsetup CLI and related binaries.")
|
|
28
|
+
return 0
|