-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 1.58 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agor"
version = "0.6.3"
description = "AgentOrchestrator - Multi-Agent Development Coordination Platform"
authors = [{ name = "Jeremiah K.", email = "jeremiahk@gmx.com" }]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
]
dependencies = [
"httpx",
"plumbum",
"pyperclip",
"tqdm",
"typer",
"platformdirs>=4.3.7,<5.0.0",
"structlog>=24.1",
"pydantic-settings>=2.0",
"PyYAML",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"pytest-tmp-git",
"ruff",
"mypy",
"pre-commit",
"build",
"twine",
]
[project.scripts]
agor = "agor.main:app"
[project.urls]
"Bug Tracker" = "https://github.com/jeremiah-k/agor/issues"
"Repository" = "https://github.com/jeremiah-k/agor"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"agor.tools" = ["*.md", "*.py"]
[tool.trunk]
enabled = true
[tool.coverage.run]
branch = true
source = ["src/agor"]
[tool.coverage.report]
show_missing = true
skip_covered = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]
# Tool configurations removed - using trunk.io for linting