-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 790 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 790 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
[tool.poetry]
name = "code-conductor"
version = "0.1.3"
description = "Agent coordination for Conductor, Warp, and Claude Code"
authors = ["Ryan Mac <ryan@updoot.co>"]
readme = "README.md"
packages = [{include = "code_conductor"}]
[tool.poetry.dependencies]
python = "^3.9,<3.13"
pyyaml = "^6.0"
requests = "^2.28.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
black = "^23.0.0"
flake8 = "^6.0.0"
[tool.poetry.scripts]
conductor-setup = "setup:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503", "E501", "W504", "E231", "E701", "E704", "F401", "F541", "W293", "W291", "F841", "E741"]