-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (47 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (47 loc) · 1.23 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
[project]
name = "multi-agent-daily-report"
version = "0.1.0"
description = "Collect multi-agent activity and prepare daily report context."
requires-python = ">=3.10"
dependencies = ["pyyaml>=6.0.0"]
[project.optional-dependencies]
mysql = ["pymysql>=1.1.0"]
dev = ["pytest>=7", "ruff>=0.5", "mypy>=1.0"]
[project.scripts]
daily-report = "multi_agent_daily_report.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
multi_agent_daily_report = ["py.typed"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pymysql"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "yaml"
ignore_missing_imports = true
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"W", # pycodestyle warnings
"I", # isort
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["multi_agent_daily_report"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"