-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.35 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
50
51
52
[project]
name = "secureshell"
version = "0.2.0"
description = "A drop-in shell execution wrapper for LLM agents that prevents hallucinated/destructive commands."
authors = [
{name = "Divyansh Agrawal", email = "keshav.r.1925@gmail.com"},
]
dependencies = [
"pydantic>=2.0.0",
"httpx>=0.25.0",
"pyyaml>=6.0",
"typing-extensions>=4.5.0",
"structlog>=23.1.0",
"tenacity>=8.2.0",
"pydantic-settings>=2.0.0",
"aiofiles>=23.0.0",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
keywords = ["security", "llm", "ai", "shell", "command", "claude", "openai", "anthropic", "langchain"]
[project.urls]
Homepage = "https://github.com/divagr18/secureshell"
Repository = "https://github.com/divagr18/secureshell.git"
"Bug Tracker" = "https://github.com/divagr18/secureshell/issues"
Changelog = "https://github.com/divagr18/secureshell/blob/main/CHANGELOG.md"
[project.optional-dependencies]
openai = ["openai>=1.0.0"]
anthropic = ["anthropic>=0.18.0"]
google = ["google-generativeai>=0.3.0"]
langchain = ["langchain-core>=0.1.0"]
mcp = ["mcp>=0.1.0"]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.10.0",
]
dev = [
"black",
"isort",
"mypy",
"ruff",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["secureshell"]