-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.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
[project]
name = "engineeringagent"
version = "0.5.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "soetang", email = "benjamin@soetang.dk" }
]
requires-python = ">=3.12"
dependencies = [
"jinja2>=3.1.6",
"pydantic>=2.12.5",
"pyyaml>=6.0.3",
"typer>=0.24.1",
]
[project.scripts]
engineeringagent = "engineeringagent.presentation.cli:app"
[build-system]
requires = ["uv_build>=0.10.4,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"build>=1.4.0",
"coverage>=7.13.4",
"pyrefly>=0.56.0",
"pytest>=9.0.2",
"ruff>=0.15.6",
"setuptools>=82.0.1",
"twine>=6.2.0",
"wheel>=0.46.3",
]
[tool.ruff]
# Enforce Google-style docstrings for exported functions and classes
lint.select = ["D"] # Enable docstring linting
lint.pydocstyle.convention = "google" # Use Google style
lint.extend-ignore = [
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"D107", # Missing docstring in __init__
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
]
[tool.pyrefly]
# Configure Pyrefly to exclude test directories
project_excludes = ["tests/", "test_*.py", "harness/fitness/"]
[tool.pytest.ini_options]
addopts = ["-m", "not integration", "--strict-markers" , "-q"]
testpaths = ["tests", "harness/fitness/tests"]
markers = [
"integration: mark tests as integration tests",
]