-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 845 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
[project]
name = "patchwork"
version = "0.1.0"
description = "A CLI agent for researching synth patches, controlling hardware synths via MIDI, and managing a patch library"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"pydantic-ai",
"rich",
"python-dotenv",
"python-rtmidi",
"pyyaml",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
patchwork = "patchwork.cli:main_cli"
[dependency-groups]
dev = ["pytest", "pytest-asyncio", "ruff"]
[tool.ruff]
target-version = "py314"
line-length = 100
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"RUF", # ruff-specific rules
]