-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 759 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (33 loc) · 759 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "coding-with-beat"
version = "0.3.8"
description = "A pixel-art music companion for Claude Code."
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"Pillow>=10.0",
"rich>=13.0",
"mutagen>=1.47",
"httpx[socks]>=0.27",
]
[project.optional-dependencies]
dev = [
"pre-commit>=4.0",
"pytest>=8.0",
"ruff>=0.15.12",
]
[project.scripts]
cwb = "coding_with_beat.__main__:main"
[tool.setuptools.packages.find]
include = ["coding_with_beat*"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]