-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 930 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 930 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "latex-music-linker"
version = "0.1.0"
description = "Automatically link music references in LaTeX newsletters."
authors = [{name = "Your Name"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"requests"
]
[project.scripts]
latex-music-linker = "latex_music_linker.cli:main"
[project.entry-points."latex_music_linker.agents"]
heuristic = "latex_music_linker.agent:HeuristicStrategy"
llm = "latex_music_linker.agent:LLMStrategy"
claude-code = "latex_music_linker.agent:ClaudeCodeStrategy"
[tool.ruff]
line-length = 100
target-version = "py39" # keep Ruff fixes aligned with the minimum supported Python version
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"ruff>=0.14.6",
]