-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 818 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (37 loc) · 818 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
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "midi2mkcd"
version = "0.1.0"
description = "Convert a MIDI file to a MakeCode Arcade song!"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"mido>=1.3.3",
"pyyaml>=6.0.3",
]
[project.scripts]
midi2mkcd = "midi2mkcd.main:main"
[project.optional-dependencies]
optional = [
"pyperclip>=1.11.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/midi2mkcd"]
[dependency-groups]
dev = [
"mypy>=2.3.0",
"pre-commit>=4.6.1",
"ruff>=0.16.0",
"types-pyperclip>=1.11.0.20260508",
"types-pyyaml>=6.0.12.20260724",
]
[tool.ruff]
target-version = "py314"
[tool.mypy]
python_version = "3.14"
strict = true
[[tool.mypy.overrides]]
module = ["mido.*"]
ignore_missing_imports = true