-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (57 loc) · 1.49 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
[build-system]
requires = ["hatchling==1.27.0"]
build-backend = "hatchling.build"
[project]
name = "inboxmind"
version = "0.6.0"
description = "Human-approved email intelligence pipeline scaffold for a single-account InboxMind MVP."
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"anthropic==0.102.0",
"cryptography==48.0.1",
"email-validator==2.3.0",
"httpx==0.28.1",
"msal==1.36.0",
"pydantic==2.13.4",
"pydantic-settings==2.14.2",
"pyyaml==6.0.3",
"supabase==2.30.0",
"tenacity==9.1.2",
]
[project.scripts]
inboxmind = "src.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"mypy==2.1.0",
"pre-commit==4.6.0",
"pytest==9.0.3",
"ruff==0.15.13",
"types-PyYAML==6.0.12.20260510",
]
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["."]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "S", "SIM"]
ignore = ["S101"]
[tool.mypy]
python_version = "3.12"
strict = true
warn_unused_configs = true
plugins = ["pydantic.mypy"]
files = ["src", "tests"]
# tests/ has no __init__.py; anchor module names at the repo root so
# tests/fakes.py is always `tests.fakes`, matching how test modules import it.
explicit_package_bases = true
[[tool.mypy.overrides]]
# msal ships no py.typed; typed access goes through the DeviceFlowClient and
# TokenCacheState protocols in src/ingestion/graph_token_cache.py.
module = ["msal"]
ignore_missing_imports = true