-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.19 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
[project]
name = "goosetown"
version = "0.1.0"
description = "Multi-agent coordination for goose using skills and async delegates"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [{name = "Block, Inc."}]
requires-python = ">=3.11"
dependencies = [
"starlette>=0.40,<1.0",
"uvicorn[standard]>=0.30,<1.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/block/goosetown"
Repository = "https://github.com/block/goosetown"
Issues = "https://github.com/block/goosetown/issues"
[tool.uv]
dev-dependencies = [
"pytest>=8.0",
"black>=24.0",
"mypy>=1.14.0",
"bandit>=1.8.0",
"types-PyYAML>=6.0",
]
[tool.black]
line-length = 120
[tool.mypy]
python_version = "3.11"
warn_return_any = false
warn_unused_ignores = true
disallow_untyped_defs = false
check_untyped_defs = false
exclude = ["REPOS/", ".scratch/", ".venv/"]
# Standalone scripts without type annotations - start very permissive
ignore_missing_imports = true
[tool.bandit]
exclude_dirs = ["tests", "REPOS", ".scratch", ".venv"]
# B101: assert_used - fine in non-production code
# B608: hardcoded_sql_expressions - false positives on parameterized queries with dynamic placeholders
skips = ["B101", "B608"]