agentargus 0.0.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 @@
1
+ /venv
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mohd Arbaaz Siddiqui
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,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentargus
3
+ Version: 0.0.0
4
+ Summary: Production-grade evaluation, observability, and reliability for AI agents
5
+ Project-URL: Repository, https://github.com/mohdcodes/AgentArgus
6
+ Project-URL: Issues, https://github.com/mohdcodes/AgentArgus/issues
7
+ Author-email: Mohd Arbaaz Siddiqui <arbaazcode@gmail.com>
8
+ License: MIT
9
+ License-File: LICENCE
10
+ Keywords: agents,evaluation,langgraph,llm,observability,opentelemetry,rag,reliability
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.10
22
+ Provides-Extra: dev
23
+ Requires-Dist: build>=1.0; extra == 'dev'
24
+ Requires-Dist: mypy>=1.10; extra == 'dev'
25
+ Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
26
+ Requires-Dist: pytest-cov>=4.1; extra == 'dev'
27
+ Requires-Dist: pytest>=8.0; extra == 'dev'
28
+ Requires-Dist: ruff>=0.5; extra == 'dev'
29
+ Requires-Dist: twine>=5.0; extra == 'dev'
30
+ Provides-Extra: docs
31
+ Requires-Dist: pdoc>=14.0; extra == 'docs'
32
+ Description-Content-Type: text/markdown
33
+
34
+ # AgentArgus
35
+
36
+ Production-grade evaluation, observability, and reliability for AI agents.
37
+
38
+ > Under active development. Follow progress at https://github.com/mohdcodes/AgentArgus
@@ -0,0 +1,5 @@
1
+ # AgentArgus
2
+
3
+ Production-grade evaluation, observability, and reliability for AI agents.
4
+
5
+ > Under active development. Follow progress at https://github.com/mohdcodes/AgentArgus
File without changes
@@ -0,0 +1,117 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ # ── Project metadata ──────────────────────────────────────────────────────────
6
+
7
+ [project]
8
+ name = "agentargus"
9
+ version = "0.0.0"
10
+ description = "Production-grade evaluation, observability, and reliability for AI agents"
11
+ readme = "README.md"
12
+ requires-python = ">=3.10"
13
+ license = { text = "MIT" }
14
+ authors = [
15
+ { name = "Mohd Arbaaz Siddiqui", email = "arbaazcode@gmail.com" }
16
+ ]
17
+ keywords = [
18
+ "llm",
19
+ "agents",
20
+ "evaluation",
21
+ "observability",
22
+ "reliability",
23
+ "langgraph",
24
+ "opentelemetry",
25
+ "rag",
26
+ ]
27
+ classifiers = [
28
+ "Development Status :: 1 - Planning",
29
+ "Intended Audience :: Developers",
30
+ "License :: OSI Approved :: MIT License",
31
+ "Operating System :: OS Independent",
32
+ "Programming Language :: Python :: 3",
33
+ "Programming Language :: Python :: 3.10",
34
+ "Programming Language :: Python :: 3.11",
35
+ "Programming Language :: Python :: 3.12",
36
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
37
+ "Topic :: Software Development :: Libraries :: Python Modules",
38
+ ]
39
+
40
+ # Runtime dependencies (empty for v0.0.0 stub — fill these in during Week 2+)
41
+ dependencies = []
42
+
43
+ # Optional dependency groups
44
+ [project.optional-dependencies]
45
+ dev = [
46
+ "pytest>=8.0",
47
+ "pytest-cov>=4.1",
48
+ "pytest-asyncio>=0.23",
49
+ "ruff>=0.5",
50
+ "mypy>=1.10",
51
+ "build>=1.0",
52
+ "twine>=5.0",
53
+ ]
54
+ docs = [
55
+ "pdoc>=14.0",
56
+ ]
57
+
58
+ # ── Project URLs ──────────────────────────────────────────────────────────────
59
+
60
+ [project.urls]
61
+ Repository = "https://github.com/mohdcodes/AgentArgus"
62
+ Issues = "https://github.com/mohdcodes/AgentArgus/issues"
63
+
64
+ # ── Hatchling build config ────────────────────────────────────────────────────
65
+
66
+ [tool.hatch.build.targets.wheel]
67
+ packages = ["agentargus"]
68
+
69
+ # ── Ruff (linter + formatter — replaces black, flake8, isort) ────────────────
70
+
71
+ [tool.ruff]
72
+ line-length = 100
73
+ target-version = "py310"
74
+
75
+ [tool.ruff.lint]
76
+ select = ["E", "F", "W", "I", "B", "UP"]
77
+ ignore = ["E501"]
78
+
79
+ [tool.ruff.lint.isort]
80
+ known-first-party = ["agentargus"]
81
+
82
+ # ── Pytest ────────────────────────────────────────────────────────────────────
83
+
84
+ [tool.pytest.ini_options]
85
+ minversion = "8.0"
86
+ testpaths = ["tests"]
87
+ python_files = ["test_*.py"]
88
+ addopts = "-v --tb=short --cov=agentargus"
89
+ asyncio_mode = "auto"
90
+ filterwarnings = [
91
+ "ignore::DeprecationWarning",
92
+ ]
93
+
94
+ # ── Coverage ──────────────────────────────────────────────────────────────────
95
+
96
+ [tool.coverage.run]
97
+ source = ["agentargus"]
98
+ omit = ["*/tests/*", "*/test_*.py"]
99
+
100
+ [tool.coverage.report]
101
+ exclude_lines = [
102
+ "pragma: no cover",
103
+ "def __repr__",
104
+ "raise AssertionError",
105
+ "raise NotImplementedError",
106
+ "if __name__ == .__main__.:",
107
+ ]
108
+ precision = 2
109
+ fail_under = 80
110
+
111
+ # ── Mypy ──────────────────────────────────────────────────────────────────────
112
+
113
+ [tool.mypy]
114
+ python_version = "3.10"
115
+ warn_return_any = true
116
+ warn_unused_configs = true
117
+ ignore_missing_imports = true