-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.57 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
[project]
name = "mental-sync-cli"
version = "0.1.0"
description = "Mental-Sync-CLI (MSC): A local-first, secure, and self-bootstrapping Agent Runtime Environment."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pydantic>=2.10.0",
"typer>=0.15.0",
"rich>=13.9.0",
"loguru>=0.7.0",
"openai>=2.16.0",
"pyyaml>=6.0.3",
"anthropic>=0.77.1",
"google-genai>=1.61.0",
"httpx>=0.28.1",
"types-pyyaml>=6.0.12.20250915",
"pywin32>=311",
]
[tool.uv.workspace]
members = ["packages/*"]
[tool.hatch.build.targets.wheel]
packages = ["src/msc"]
[project.scripts]
msc = "msc.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.9.0",
"mypy>=1.14.0",
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
]
[tool.ruff]
line-length = 100
target-version = "py313"
extend-exclude = ["ref"]
select = ["E", "F", "I", "N", "UP", "B", "A", "C4", "RET", "SIM", "ARG", "PL"]
ignore = [
"E501", # Line too long
"PLR0913", # Too many arguments
"PLR0911", # Too many return statements
"PLC0415", # Import should be at the top-level
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.mypy]
python_version = "3.13"
exclude = ["ref"]
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true