-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
40 lines (32 loc) · 1.02 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
[project]
name = "fmapi-codingagent-opskit"
version = "0.1.4"
description = "Configure coding agents to use Databricks Foundation Model API"
requires-python = ">=3.10"
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"simple-term-menu>=1.6.6",
"tomli>=2.0.0; python_version < '3.11'",
"tomli_w>=1.0.0",
]
[project.scripts]
setup-fmapi-claudecode = "fmapi_opskit.cli:app"
setup-fmapi-codex = "fmapi_opskit.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/fmapi_opskit"]
[tool.hatch.build.targets.wheel.force-include]
"src/fmapi_opskit/templates/fmapi-key-helper.sh.template" = "fmapi_opskit/templates/fmapi-key-helper.sh.template"
[dependency-groups]
dev = ["pytest>=8.0", "ruff>=0.8.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["slow: marks tests as slow (e.g. real network, concurrency stress)"]
[tool.ruff]
src = ["src"]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM"]