-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (48 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
58 lines (48 loc) · 1.08 KB
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
[project]
name = "MaskMapWizard"
version = "0.2.0"
description = "Combining multiple textures into a single RGBA image"
authors = [{ name = "C. Bernard", email = "cfr.bernard@yahoo.com" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pillow",
"tkinterdnd2-universal"
]
[project.optional-dependencies]
dev = [
"pyinstaller",
"pytest",
"mypy",
"ruff",
"black",
"pre-commit"
]
[project.scripts]
MaskMapWizard = "MaskMapWizard.__main__:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["MaskMapWizard"]
[tool.mypy]
python_version = "3.13"
ignore_missing_imports = true
disallow_untyped_defs = false
show_error_codes = true
pretty = true
exclude = "^tests/fixtures/"
[[tool.mypy.overrides]]
module = ["tkinterdnd2-universal"]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.black]
line-length = 100
target-version = ['py313']