-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 847 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 847 Bytes
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
[project]
name = "py-chat-midi"
version = "0.1.0"
description = "A unique chat/text based MIDI sequencer"
requires-python = ">=3.13"
dependencies = [
"mido>=1.3.3",
"python-rtmidi>=1.5.8",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"anthropic>=0.49.0",
"pywebview>=5.0",
]
[dependency-groups]
dev = [
"ruff>=0.9.0",
"pyinstaller>=6.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-playwright>=0.7.2",
]
[tool.pytest.ini_options]
addopts = "--cov=sequencer --cov=server --cov=ai --cov-report=term-missing"
[tool.coverage.run]
source = ["sequencer", "server", "ai"]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"if __name__",
"pragma: no cover",
]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]