agentix-cli 0.1.1__py3-none-any.whl

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.
agentix/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ """agentix - A CLI tool"""
2
+
3
+ __version__ = "0.1.1"
agentix/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Main entry point for the agentix CLI"""
2
+
3
+ from .cli import main
4
+
5
+ if __name__ == "__main__":
6
+ main()
agentix/cli.py ADDED
@@ -0,0 +1,12 @@
1
+ """CLI implementation for agentix"""
2
+
3
+
4
+ def main():
5
+ """Main CLI function"""
6
+ print("agentix v0.1.0")
7
+ print("Welcome to agentix!")
8
+ # Add CLI logic here
9
+
10
+
11
+ if __name__ == "__main__":
12
+ main()
@@ -0,0 +1,63 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentix-cli
3
+ Version: 0.1.1
4
+ Summary: A CLI tool for [description TBD]
5
+ Project-URL: Homepage, https://github.com/saggl/agentix
6
+ Project-URL: Repository, https://github.com/saggl/agentix.git
7
+ Project-URL: Issues, https://github.com/saggl/agentix/issues
8
+ Author-email: Christian Sagstetter <christian.sagstetter@gmail.com>
9
+ License: MIT
10
+ License-File: LICENSE
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.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Requires-Python: >=3.9
21
+ Description-Content-Type: text/markdown
22
+
23
+ # agentix
24
+
25
+ [Description of what agentix does - to be filled in]
26
+
27
+ ## Installation
28
+
29
+ ### Using uv (recommended)
30
+
31
+ ```bash
32
+ uv pip install agentix-cli
33
+ ```
34
+
35
+ ### Using pip
36
+
37
+ ```bash
38
+ pip install agentix-cli
39
+ ```
40
+
41
+ ## Usage
42
+
43
+ ```bash
44
+ agentix
45
+ ```
46
+
47
+ ## Development
48
+
49
+ ```bash
50
+ # Clone the repository
51
+ git clone https://github.com/saggl/agentix.git
52
+ cd agentix
53
+
54
+ # Install in development mode
55
+ uv pip install -e .
56
+
57
+ # Run tests (when available)
58
+ uv run pytest
59
+ ```
60
+
61
+ ## License
62
+
63
+ MIT
@@ -0,0 +1,8 @@
1
+ agentix/__init__.py,sha256=SB0gBz6ECfWE9kRuBcu_JVvTablNZtal2hCiG6gtXPU,50
2
+ agentix/__main__.py,sha256=SnTnI-0cVTK9Az_6bFiNNOGDsrgTSpzXjQSrA1irFMY,105
3
+ agentix/cli.py,sha256=eLw6CvzzegE_6yxBFtbcfVRvVbr22Ty73fh4X507wWk,205
4
+ agentix_cli-0.1.1.dist-info/METADATA,sha256=eSKuOYfIHCsRm_UnMFWzLyYGuCIMr7yQPTZaMhB6Bno,1338
5
+ agentix_cli-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
6
+ agentix_cli-0.1.1.dist-info/entry_points.txt,sha256=HhcbVdefYSbqWT5BpJqMTK2IrXDFl-c3AS676QbxpDw,50
7
+ agentix_cli-0.1.1.dist-info/licenses/LICENSE,sha256=nfUWLXCQJX5cmkYI9viqR1QArsEMmOL0cxDQ-AnTLKk,1077
8
+ agentix_cli-0.1.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ agentix = agentix.__main__:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Christian Sagstetter
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.