agenticassure 0.0.1__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,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agenticassure
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: AI agent benchmarking and quality assurance SDK — pre-deployment testing for LLM-powered agents.
|
|
5
|
+
Project-URL: Homepage, https://github.com/agenticassure/agenticassure
|
|
6
|
+
Project-URL: Documentation, https://agenticassure.dev
|
|
7
|
+
Project-URL: Repository, https://github.com/agenticassure/agenticassure
|
|
8
|
+
Project-URL: Issues, https://github.com/agenticassure/agenticassure/issues
|
|
9
|
+
Author: AgenticAssure
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
Keywords: agents,ai,benchmarking,evaluation,llm,quality-assurance,testing
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
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: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Software Development :: Testing
|
|
22
|
+
Requires-Python: >=3.10
|
|
File without changes
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "agenticassure"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "AI agent benchmarking and quality assurance SDK — pre-deployment testing for LLM-powered agents."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "AgenticAssure" },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["ai", "agents", "llm", "testing", "benchmarking", "evaluation", "quality-assurance"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Programming Language :: Python :: 3.13",
|
|
25
|
+
"Topic :: Software Development :: Testing",
|
|
26
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Homepage = "https://github.com/agenticassure/agenticassure"
|
|
31
|
+
Documentation = "https://agenticassure.dev"
|
|
32
|
+
Repository = "https://github.com/agenticassure/agenticassure"
|
|
33
|
+
Issues = "https://github.com/agenticassure/agenticassure/issues"
|
|
File without changes
|