-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (66 loc) · 1.42 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 = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "opencode-plan-cli"
version = "2.1.0"
description = "Agent-first enterprise planning and execution CLI"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"typer>=0.12,<0.16",
"pydantic>=2.8,<3",
"networkx>=3.3,<4",
"jsonschema>=4.23,<5",
"numpy>=2.0,<3",
"rich>=13.7,<14",
"shellingham>=1.5,<2",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"mypy>=1.10",
"pytest>=8.2",
"ruff>=0.5",
]
[project.scripts]
opencode-plan = "plan_cli.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/plan_cli"]
include = [
"README.md",
"SKILL.md",
"BEST_PRACTICES.md",
"templates/**/*.json",
"scripts/**/*.sh",
"scripts/**/*.py",
]
[tool.hatch.build.targets.sdist]
include = [
"README.md",
"SKILL.md",
"BEST_PRACTICES.md",
"templates/**/*.json",
"scripts/**/*.sh",
"scripts/**/*.py",
"src/**/*.py",
"tests/**/*.py",
"pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.mypy]
python_version = "3.11"
show_error_codes = true
warn_unused_ignores = true
disallow_untyped_defs = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = ["networkx", "networkx.*", "jsonschema", "jsonschema.*"]
ignore_missing_imports = true
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]