-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.75 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
43
44
45
46
47
48
49
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "seekrit"
version = "0.7.0"
description = "Read-path SDK for seekrit — resolve and decrypt secrets client-side with a service token."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [{ name = "seekrit" }]
keywords = ["seekrit", "secrets", "secrets-manager", "encryption", "zero-knowledge"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
]
dependencies = ["cryptography>=41"]
[project.optional-dependencies]
# `seekrit.transport` — the httpx transports that substitute
# {{seekrit:NAME}} placeholders into outbound requests.
httpx = ["httpx>=0.24"]
# `seekrit.langchain` — agent middleware for per-request and per-tool
# credential scoping. Brings httpx along, since the middleware is only
# useful paired with the transport.
langchain = ["httpx>=0.24", "langchain>=1.0"]
# `seekrit.pydantic_ai` — a WrapperToolset that scopes each tool call. Brings
# httpx along for the same reason.
pydantic-ai = ["httpx>=0.24", "pydantic-ai>=1.0"]
# `seekrit.hermes` — Hermes Agent secret sources. No extra: the module imports
# Hermes lazily (only inside `register()`), so there is no third-party dependency
# to install — it is importable wherever Hermes itself is.
[project.entry-points."hermes_agent.plugins"]
seekrit = "seekrit.hermes:register"
[project.urls]
Homepage = "https://seekrit.dev"
Documentation = "https://seekrit.dev/docs"
Source = "https://github.com/seekritdev/python-sdk"
[tool.hatch.build.targets.wheel]
packages = ["src/seekrit"]
[tool.hatch.build.targets.sdist]
include = ["src/seekrit", "tests", "testdata", "README.md"]