-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 850 Bytes
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
[project]
name = "advanced-agentic-dev-patterns"
version = "0.1.0"
description = "\"Advanced\" agentic dev patterns — we made the mistakes in production so you can make them in staging."
requires-python = ">=3.12"
dependencies = [
"mkdocs-awesome-pages-plugin>=2.10.1",
]
[project.optional-dependencies]
docs = [
"mkdocs-material",
"mkdocs-glightbox",
"mkdocstrings[python]",
"jieba",
]
test = [
"pytest",
"pytest-asyncio",
"papermill",
"ipykernel",
]
lint = [
"ruff",
]
dev = [
"advanced-agentic-dev-patterns[docs,test,lint]",
]
[tool.pytest.ini_options]
testpaths = ["patterns", "scripts/tests"]
addopts = "--strict-markers"
markers = [
"requires_api_key: test requires an API key to run",
]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "W"]