-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
82 lines (72 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clawvault"
version = "0.1.0"
description = "Atomic \"claw\" control: every AI reach, within your sight."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Tophant SPAI Lab"},
]
keywords = ["ai-security", "openclaw", "credential-vault", "api-key-protection", "privacy"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
]
dependencies = [
"mitmproxy>=10.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"aiosqlite>=0.20.0",
"cryptography>=42.0",
"pydantic>=2.6",
"pydantic-settings>=2.1",
"typer[all]>=0.12.0",
"structlog>=24.1",
"httpx>=0.27.0",
"rich>=13.7",
"watchfiles>=1.1.0",
"croniter>=2.0",
"inotify_simple>=1.3",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=4.1",
"ruff>=0.3",
"mypy>=1.8",
]
[project.scripts]
clawvault = "claw_vault.cli:app"
[project.urls]
Homepage = "https://github.com/tophant-ai/ClawVault"
Documentation = "https://ClawVault.dev"
Repository = "https://github.com/tophant-ai/ClawVault"
Issues = "https://github.com/tophant-ai/ClawVault/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/claw_vault"]
artifacts = ["src/claw_vault/config.example.yaml"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "S", "B"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
follow_imports = "skip"
pretty = true
disable_error_code = ["misc", "import-untyped", "type-arg", "no-untyped-def", "no-untyped-call", "untyped-decorator", "arg-type", "call-arg", "index", "union-attr", "return", "name-defined", "misc"]