-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 852 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 852 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkcd2app"
version = "0.1.0"
description = "Convert MakeCode Arcade games into static websites, Electron, or Tauri apps"
readme = "README.md"
requires-python = ">=3.14"
# We are pinning redun because we monkey patch something
dependencies = [
"pydantic",
"pyyaml",
"redun==0.44.1",
"requests",
"beautifulsoup4",
"pillow",
"platformdirs>=4.11.0",
]
[project.scripts]
mkcd2app = "mkcd2app.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mkcd2app"]
[dependency-groups]
dev = [
"mypy>=2.3.0",
"pre-commit>=4.6.1",
"pytest>=9.1.1",
"pytest-timeout>=2.4.0",
"ruff>=0.16.0",
"types-pyyaml>=6.0.12.20260724",
]
[tool.ruff]
target-version = "py314"
[tool.mypy]
python_version = "3.14"
strict = true