-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.63 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "minion-code"
version = "0.1.44"
description = "A Python project depending on minion"
authors = [{name = "User", email = "user@example.com"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"minionx>=0.1.21",
"typer>=0.9.0",
"Pillow>=10.0.0",
"nest-asyncio>=1.5.0",
"agent-client-protocol>=0.7.0",
"anthropic>=0.30.0",
"aiohttp>=3.9.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"flake8",
"mypy"
]
tui = [
"textual>=0.40.0",
"rich>=13.0.0"
]
agent = [
"openai>=1.0.0"
]
web = [
"fastapi>=0.100.0",
"uvicorn>=0.20.0",
"pydantic>=2.0.0"
]
[project.scripts]
# TUI interface (default, with Textual)
mc = "minion_code.cli:run"
mcode = "minion_code.cli:run"
minion-code = "minion_code.cli:run"
# Simple console interface (no TUI dependencies)
mcode-simple = "minion_code.cli_simple:run"
hi = "minion_code.cli_simple:run"
[tool.setuptools.packages.find]
where = ["."]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
no_implicit_optional = false
warn_unused_ignores = false
check_untyped_defs = false
disable_error_code = ["var-annotated", "assignment", "arg-type", "attr-defined", "union-attr", "index", "operator", "no-redef", "abstract", "call-arg", "syntax", "import-untyped", "valid-type", "misc"]
[[tool.mypy.overrides]]
module = ["yaml", "yaml.*", "watchdog", "watchdog.*", "textual", "textual.*", "pydantic", "pydantic.*", "loguru", "loguru.*", "psutil", "minion", "minion.*"]
ignore_missing_imports = true
ignore_errors = true