- Landing page: pip install snippet, How it Works section, dual code examples (decorator + OpenAI wrapper), Integrations section, Open Source badge - SDK README: quickstart, OpenAI/LangChain/Custom integrations, API reference, architecture diagram - Published vectry-agentlens v0.1.0 to PyPI (import as agentlens) - Fixed pyproject.toml: hatchling.build backend, wheel package mapping
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "vectry-agentlens"
|
|
version = "0.1.0"
|
|
description = "Agent observability that traces decisions, not just API calls"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.9"
|
|
authors = [{ name = "Vectry", email = "hunter@repi.fun" }]
|
|
keywords = ["ai", "agents", "observability", "tracing", "llm"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Software Development :: Libraries",
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.25.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
langchain = ["langchain-core>=0.1.0"]
|
|
openai = ["openai>=1.0.0"]
|
|
all = ["vectry-agentlens[langchain,openai]"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["agentlens"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://agentlens.vectry.tech"
|
|
Repository = "https://gitea.repi.fun/repi/agentlens"
|
|
Documentation = "https://agentlens.vectry.tech/docs"
|