-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 756 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 756 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
[project]
name = "devflow-kit"
version = "0.1.0"
description = "AI agents that turn Jira tickets into pull requests"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Manas Rai" }]
dependencies = [
"httpx>=0.27",
"pydantic>=2.0",
"mcp>=1.0",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.40"]
openai = ["openai>=1.0"]
google = ["google-genai>=0.1.0"]
sdk = ["anthropic>=0.40", "openai>=1.0"]
graphify = ["graphifyy>=0.1.0"]
storage = ["boto3>=1.34"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "ruff>=0.8"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]