-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.46 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
[project]
name = "lmms-lean-runner"
version = "0.1.0"
description = "Lean Server Workspace"
requires-python = ">=3.12"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["packages.*"]
exclude = ["playground*", "demo*"]
[tool.uv.workspace]
members = [
"packages/client",
"packages/server"
]
[tool.uv]
dev-dependencies = [
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.15",
"pymdown-extensions>=10.16",
"PyYAML>=6.0.2",
"mkdocs-macros-plugin>=1.3.7",
"mkdocs-minify-plugin>=0.8.0",
"mkdocs-glightbox>=0.4.0",
"sphinx>=7.4.7",
"furo>=2024.7.18",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"tqdm>=4.67.1",
"pyyaml>=6.0.2",
"loguru>=0.7.2",
"fastapi>=0.116.1",
"uvicorn>=0.35.0",
"rich>=14.1.0",
"aiosqlite>=0.21.0",
"python-multipart>=0.0.20",
"aiohttp>=3.12.15",
"uuid-utils>=0.11.0",
"datasets>=4.0.0",
"xxhash>=3.4.0",
]
[tool.ruff]
# Rule selection:
# E: pycodestyle (style errors)
# F: Pyflakes (logical errors)
# I: isort (import sorting)
# B: flake8-bugbear (bug detection)
# UP: pyupgrade (syntax modernization)
# A: flake8-builtins (built-in shadowing)
# C4: flake8-comprehensions (comprehension best practices)
lint.select = ["E", "F", "I", "B", "UP", "A", "C4"]
[tool.ruff.lint.per-file-ignores]
"sphinx_docs/**/conf.py" = ["A001"]