-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (108 loc) · 4.48 KB
/
Copy pathpyproject.toml
File metadata and controls
122 lines (108 loc) · 4.48 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "nasde-toolkit"
dynamic = ["version"]
description = "Noesis Agentic Software Development Evals Toolkit"
readme = "README.md"
# pyiceberg (transitive via supabase → storage3) has no cp314 Windows wheels
# and requires MSVC to build from source. Lift the upper cap when pyiceberg
# ships cp314 wheels.
requires-python = ">=3.12,<3.14"
license = "MIT"
keywords = ["evaluation", "agents", "llm", "coding-agents", "evals", "harbor", "opik"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
dependencies = [
"typer>=0.16",
"rich>=14.1,<16",
"platformdirs>=4.0",
"packaging>=25,<26",
# Explicit provider extras instead of harbor[cloud]: as of 0.8 the [cloud]
# extra pulls the novita provider, which pins the pre-release
# novita-sandbox==2.0.0a3 (no stable 2.x exists) and breaks `uv lock`. We
# list only the providers nasde documents and supports. Add a provider here
# if README's harbor-env table grows.
"harbor[daytona,modal,e2b,runloop,gke]>=0.19,<0.20",
"opik>=2,<3",
# Transitive via harbor/opik. Lower bound satisfies both GHSA-xqmj-j6mv-4862
# (litellm <1.83.7) and harbor's own floor (litellm >=1.83.14).
"litellm>=1.83.14",
# Transitive via harbor → supabase. Lower bound skips broken 2.28.3 wheel
# (missing _async/ submodule); upper bound blocks 3.0.0a1 pre-release with
# the same defect. Remove when supabase ships a healthy 3.x wheel.
"supabase>=2.29.0,<3",
# Transitive via harbor/opik/supabase. Pinned to fix CVE-2026-45409
# (idna <3.15) and CVE-2026-44431 / CVE-2026-44432 (urllib3 <2.7.0).
"idna>=3.15",
"urllib3>=2.7.0",
# Transitive via harbor/litellm. Pinned to fix the June-2026 CVE batch
# CVE-2026-54273..54280 (aiohttp <3.14.1).
"aiohttp>=3.14.1",
# Transitive via harbor → supabase / opik. Pinned to fix
# GHSA-537c-gmf6-5ccf (cryptography <48.0.1).
"cryptography>=48.0.1",
# Transitive via harbor/opik (starlette/fastapi). Pinned to fix
# CVE-2026-53540 (python-multipart <0.0.31).
"python-multipart>=0.0.31",
# Transitive via harbor/litellm. Pinned to fix GHSA-4xgf-cpjx-pc3j
# (pydantic-settings <2.14.2).
"pydantic-settings>=2.14.2",
# Transitive via harbor/opik. Pinned to fix CVE-2026-54282 / CVE-2026-54283
# (starlette <1.3.1).
"starlette>=1.3.1",
]
[project.urls]
Homepage = "https://noesis.vision/nasde/"
Source = "https://github.com/NoesisVision/nasde-toolkit"
Issues = "https://github.com/NoesisVision/nasde-toolkit/issues"
Changelog = "https://github.com/NoesisVision/nasde-toolkit/blob/main/CHANGELOG.md"
Documentation = "https://noesisvision.github.io/nasde-toolkit/"
[project.scripts]
nasde = "nasde_toolkit.cli:app"
[tool.hatch.version]
source = "vcs"
raw-options = { local_scheme = "no-local-version" }
[tool.hatch.build.hooks.vcs]
version-file = "src/nasde_toolkit/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/nasde_toolkit"]
[tool.hatch.build.targets.wheel.force-include]
".claude/skills/nasde-benchmark-calibration" = "nasde_toolkit/_bundled_skills/nasde-benchmark-calibration"
".claude/skills/nasde-benchmark-creator" = "nasde_toolkit/_bundled_skills/nasde-benchmark-creator"
".claude/skills/nasde-benchmark-from-history" = "nasde_toolkit/_bundled_skills/nasde-benchmark-from-history"
".claude/skills/nasde-benchmark-from-public-repos" = "nasde_toolkit/_bundled_skills/nasde-benchmark-from-public-repos"
".claude/skills/nasde-benchmark-runner" = "nasde_toolkit/_bundled_skills/nasde-benchmark-runner"
[project.optional-dependencies]
dev = [
"ruff>=0.9",
"mypy>=1.14",
"pytest>=8.0",
]
[tool.ruff]
target-version = "py312"
line-length = 120
exclude = ["src/nasde_toolkit/_version.py"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.lint.per-file-ignores]
"src/nasde_toolkit/cli.py" = ["B008", "E402"]
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true
exclude = ["src/nasde_toolkit/_version\\.py"]
[tool.pytest.ini_options]
testpaths = ["tests"]