-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 947 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "tilechen"
version = "0.2.0"
description = "Tilechen is a tile viewer and editor for GameBoy, GameBoy Color and GameBoy Advance ROMs."
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"bitarray>=3.8.0",
"numpy>=2.4.1",
"pyside6>=6.10.1",
]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.14.14",
]
[project.scripts]
tilechen = "tilechen.app:run"
[tool.uv]
package = true
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py313"
[tool.ruff.lint.per-file-ignores]
"external/*" = ["ALL"]
[tool.ruff.lint]
select = [
"I",
"F",
"E",
"W",
"UP",
"SIM",
"B",
"A",
"C4",
"ASYNC",
"ARG",
"Q",
"RET",
"N",
"DOC",
"ISC",
"ICN",
"ERA",
"PTH",
"ANN",
]
ignore = ["ANN202"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest]
minversion = "9.0"
testpaths = [
"tests"
]