agentx-foo 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.
- agentx_foo-0.1.0/LICENSE +21 -0
- agentx_foo-0.1.0/MANIFEST.in +3 -0
- agentx_foo-0.1.0/PKG-INFO +81 -0
- agentx_foo-0.1.0/README.md +54 -0
- agentx_foo-0.1.0/pyproject.toml +47 -0
- agentx_foo-0.1.0/setup.cfg +4 -0
- agentx_foo-0.1.0/src/agentx/__init__.py +3 -0
- agentx_foo-0.1.0/src/agentx/cli.py +38 -0
- agentx_foo-0.1.0/src/agentx_foo.egg-info/PKG-INFO +81 -0
- agentx_foo-0.1.0/src/agentx_foo.egg-info/SOURCES.txt +12 -0
- agentx_foo-0.1.0/src/agentx_foo.egg-info/dependency_links.txt +1 -0
- agentx_foo-0.1.0/src/agentx_foo.egg-info/entry_points.txt +2 -0
- agentx_foo-0.1.0/src/agentx_foo.egg-info/requires.txt +6 -0
- agentx_foo-0.1.0/src/agentx_foo.egg-info/top_level.txt +1 -0
agentx_foo-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 kugesan
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentx-foo
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AgentX - Native compiled Python agent framework
|
|
5
|
+
Author-email: kugesan <kugesan@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/kugesan/agentx-foo
|
|
8
|
+
Project-URL: Repository, https://github.com/kugesan/agentx-foo.git
|
|
9
|
+
Project-URL: Issues, https://github.com/kugesan/agentx-foo/issues
|
|
10
|
+
Keywords: agent,cli,nuitka
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Provides-Extra: dev
|
|
22
|
+
Requires-Dist: nuitka>=2.0; extra == "dev"
|
|
23
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
24
|
+
Requires-Dist: build; extra == "dev"
|
|
25
|
+
Requires-Dist: twine; extra == "dev"
|
|
26
|
+
Dynamic: license-file
|
|
27
|
+
|
|
28
|
+
# agentx-foo
|
|
29
|
+
|
|
30
|
+
Native compiled Python agent framework using Nuitka.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
### From PyPI (source distribution)
|
|
35
|
+
```bash
|
|
36
|
+
pip install agentx-foo
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Pre-built Binaries
|
|
40
|
+
Download native binaries from [Releases](https://github.com/kugesan/agentx-foo/releases):
|
|
41
|
+
|
|
42
|
+
- `agentx-linux-x86_64` - Linux (x64)
|
|
43
|
+
- `agentx-macos-x86_64` - macOS Intel
|
|
44
|
+
- `agentx-macos-arm64` - macOS Apple Silicon
|
|
45
|
+
- `agentx-windows-x86_64.exe` - Windows
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
agentx --version
|
|
51
|
+
agentx run
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Development
|
|
55
|
+
|
|
56
|
+
### Build from source
|
|
57
|
+
```bash
|
|
58
|
+
pip install -e ".[dev]"
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Build native binary locally
|
|
62
|
+
```bash
|
|
63
|
+
./scripts/build_nuitka.sh
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Release Process
|
|
67
|
+
|
|
68
|
+
1. Update version in `src/agentx/__init__.py` and `pyproject.toml`
|
|
69
|
+
2. Create and push a tag:
|
|
70
|
+
```bash
|
|
71
|
+
git tag v0.1.0
|
|
72
|
+
git push origin v0.1.0
|
|
73
|
+
```
|
|
74
|
+
3. GitHub Actions will:
|
|
75
|
+
- Build Nuitka binaries for Linux, macOS, Windows
|
|
76
|
+
- Create a GitHub Release with binaries
|
|
77
|
+
- Publish source distribution to PyPI
|
|
78
|
+
|
|
79
|
+
## License
|
|
80
|
+
|
|
81
|
+
MIT
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# agentx-foo
|
|
2
|
+
|
|
3
|
+
Native compiled Python agent framework using Nuitka.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
### From PyPI (source distribution)
|
|
8
|
+
```bash
|
|
9
|
+
pip install agentx-foo
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
### Pre-built Binaries
|
|
13
|
+
Download native binaries from [Releases](https://github.com/kugesan/agentx-foo/releases):
|
|
14
|
+
|
|
15
|
+
- `agentx-linux-x86_64` - Linux (x64)
|
|
16
|
+
- `agentx-macos-x86_64` - macOS Intel
|
|
17
|
+
- `agentx-macos-arm64` - macOS Apple Silicon
|
|
18
|
+
- `agentx-windows-x86_64.exe` - Windows
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
agentx --version
|
|
24
|
+
agentx run
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
### Build from source
|
|
30
|
+
```bash
|
|
31
|
+
pip install -e ".[dev]"
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Build native binary locally
|
|
35
|
+
```bash
|
|
36
|
+
./scripts/build_nuitka.sh
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Release Process
|
|
40
|
+
|
|
41
|
+
1. Update version in `src/agentx/__init__.py` and `pyproject.toml`
|
|
42
|
+
2. Create and push a tag:
|
|
43
|
+
```bash
|
|
44
|
+
git tag v0.1.0
|
|
45
|
+
git push origin v0.1.0
|
|
46
|
+
```
|
|
47
|
+
3. GitHub Actions will:
|
|
48
|
+
- Build Nuitka binaries for Linux, macOS, Windows
|
|
49
|
+
- Create a GitHub Release with binaries
|
|
50
|
+
- Publish source distribution to PyPI
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
MIT
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agentx-foo"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "AgentX - Native compiled Python agent framework"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "kugesan", email = "kugesan@example.com"}
|
|
13
|
+
]
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.10",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
]
|
|
24
|
+
keywords = ["agent", "cli", "nuitka"]
|
|
25
|
+
dependencies = []
|
|
26
|
+
|
|
27
|
+
[project.optional-dependencies]
|
|
28
|
+
dev = [
|
|
29
|
+
"nuitka>=2.0",
|
|
30
|
+
"pytest>=7.0",
|
|
31
|
+
"build",
|
|
32
|
+
"twine",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[project.scripts]
|
|
36
|
+
agentx = "agentx.cli:main"
|
|
37
|
+
|
|
38
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://github.com/kugesan/agentx-foo"
|
|
40
|
+
Repository = "https://github.com/kugesan/agentx-foo.git"
|
|
41
|
+
Issues = "https://github.com/kugesan/agentx-foo/issues"
|
|
42
|
+
|
|
43
|
+
[tool.setuptools.packages.find]
|
|
44
|
+
where = ["src"]
|
|
45
|
+
|
|
46
|
+
[tool.setuptools.package-dir]
|
|
47
|
+
"" = "src"
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"""CLI entry point for AgentX."""
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
import sys
|
|
5
|
+
|
|
6
|
+
from agentx import __version__
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def main() -> int:
|
|
10
|
+
"""Main entry point for the AgentX CLI."""
|
|
11
|
+
parser = argparse.ArgumentParser(
|
|
12
|
+
prog="agentx",
|
|
13
|
+
description="AgentX - Native compiled Python agent framework",
|
|
14
|
+
)
|
|
15
|
+
parser.add_argument(
|
|
16
|
+
"-v", "--version",
|
|
17
|
+
action="version",
|
|
18
|
+
version=f"agentx {__version__}",
|
|
19
|
+
)
|
|
20
|
+
parser.add_argument(
|
|
21
|
+
"command",
|
|
22
|
+
nargs="?",
|
|
23
|
+
default="run",
|
|
24
|
+
help="Command to execute (default: run)",
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
args = parser.parse_args()
|
|
28
|
+
|
|
29
|
+
print(f"AgentX v{__version__}")
|
|
30
|
+
print(f"Running command: {args.command}")
|
|
31
|
+
|
|
32
|
+
# Add your core logic here
|
|
33
|
+
|
|
34
|
+
return 0
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
if __name__ == "__main__":
|
|
38
|
+
sys.exit(main())
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentx-foo
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: AgentX - Native compiled Python agent framework
|
|
5
|
+
Author-email: kugesan <kugesan@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/kugesan/agentx-foo
|
|
8
|
+
Project-URL: Repository, https://github.com/kugesan/agentx-foo.git
|
|
9
|
+
Project-URL: Issues, https://github.com/kugesan/agentx-foo/issues
|
|
10
|
+
Keywords: agent,cli,nuitka
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.10
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Provides-Extra: dev
|
|
22
|
+
Requires-Dist: nuitka>=2.0; extra == "dev"
|
|
23
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
24
|
+
Requires-Dist: build; extra == "dev"
|
|
25
|
+
Requires-Dist: twine; extra == "dev"
|
|
26
|
+
Dynamic: license-file
|
|
27
|
+
|
|
28
|
+
# agentx-foo
|
|
29
|
+
|
|
30
|
+
Native compiled Python agent framework using Nuitka.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
### From PyPI (source distribution)
|
|
35
|
+
```bash
|
|
36
|
+
pip install agentx-foo
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Pre-built Binaries
|
|
40
|
+
Download native binaries from [Releases](https://github.com/kugesan/agentx-foo/releases):
|
|
41
|
+
|
|
42
|
+
- `agentx-linux-x86_64` - Linux (x64)
|
|
43
|
+
- `agentx-macos-x86_64` - macOS Intel
|
|
44
|
+
- `agentx-macos-arm64` - macOS Apple Silicon
|
|
45
|
+
- `agentx-windows-x86_64.exe` - Windows
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
agentx --version
|
|
51
|
+
agentx run
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Development
|
|
55
|
+
|
|
56
|
+
### Build from source
|
|
57
|
+
```bash
|
|
58
|
+
pip install -e ".[dev]"
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Build native binary locally
|
|
62
|
+
```bash
|
|
63
|
+
./scripts/build_nuitka.sh
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Release Process
|
|
67
|
+
|
|
68
|
+
1. Update version in `src/agentx/__init__.py` and `pyproject.toml`
|
|
69
|
+
2. Create and push a tag:
|
|
70
|
+
```bash
|
|
71
|
+
git tag v0.1.0
|
|
72
|
+
git push origin v0.1.0
|
|
73
|
+
```
|
|
74
|
+
3. GitHub Actions will:
|
|
75
|
+
- Build Nuitka binaries for Linux, macOS, Windows
|
|
76
|
+
- Create a GitHub Release with binaries
|
|
77
|
+
- Publish source distribution to PyPI
|
|
78
|
+
|
|
79
|
+
## License
|
|
80
|
+
|
|
81
|
+
MIT
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
src/agentx/__init__.py
|
|
6
|
+
src/agentx/cli.py
|
|
7
|
+
src/agentx_foo.egg-info/PKG-INFO
|
|
8
|
+
src/agentx_foo.egg-info/SOURCES.txt
|
|
9
|
+
src/agentx_foo.egg-info/dependency_links.txt
|
|
10
|
+
src/agentx_foo.egg-info/entry_points.txt
|
|
11
|
+
src/agentx_foo.egg-info/requires.txt
|
|
12
|
+
src/agentx_foo.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentx
|