-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "riskkernel"
version = "0.9.0"
description = "Thin Python client for the RiskKernel reliability runtime (Surface 2)."
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [{ name = "Adarsh Prashar" }]
keywords = ["llm", "agents", "governance", "reliability", "budget", "guardrails"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
dependencies = [] # core is stdlib-only
[project.urls]
Homepage = "https://github.com/prashar32/riskkernel"
Source = "https://github.com/prashar32/riskkernel"
[project.optional-dependencies]
langchain = ["langchain-core"]
crewai = ["crewai>=0.80,<2"]
autogen = ["autogen-agentchat>=0.4,<1", "autogen-core>=0.4,<1"]
pydantic-ai = ["pydantic-ai-slim>=1,<2"]
dev = ["pytest"]
# This project lives in a subdirectory (sdks/python) of the repo. Hatchling's
# VCS-aware file selector lists tracked files relative to the repo root, which
# don't match the project-root-relative `packages` include — so the wheel comes
# out empty. Selecting files from the filesystem instead of git fixes it. (#32)
[tool.hatch.build]
ignore-vcs = true
[tool.hatch.build.targets.wheel]
packages = ["riskkernel"]