-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.39 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
[project]
name = "group-terminal"
dynamic = ["version"]
description = "Group Terminal"
authors = [
{ name = "Martin Krasser", email = "martin@gradion.ai" },
]
requires-python = ">=3.11,<3.15"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"fastapi>=0.119.1",
"uvicorn>=0.38.0",
"rich>=14.2.0",
"websockets>=15.0.1",
]
[tool.uv]
default-groups = [
"docs",
"dev",
]
[dependency-groups]
docs = [
"griffe-pydantic>=1.1.8",
"mkdocs>=1.6.1,<2",
"mkdocs-material>=9.5.48,<10",
"mkdocstrings-python>=1.12.2,<2",
"mkdocs-llmstxt>=0.4.0",
"click<=8.2.1",
]
dev = [
"invoke>=2.2,<3",
"pre-commit>=4.3.0,<5",
"pytest>=8.4.2,<9",
"pytest-asyncio>=1.2.0,<2",
"pytest-cov>=4.1.0,<5",
"types-aiofiles>=25.1.0.20251011,<26",
]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
pattern = "default-unprefixed"
style = "pep440"
[tool.hatch.build.targets.sdist]
include = ["group_terminal"]
[tool.hatch.build.targets.wheel]
include = ["group_terminal"]
[tool.ruff]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"aiofiles.*"
]
ignore_missing_imports = true