-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (71 loc) · 1.63 KB
/
pyproject.toml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"wheel"
]
[project]
authors = [
{email = "[email protected]", name = "Linpg Foundation"}
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"numpy",
"pillow",
"pygame-ce>=2.5.2",
"pyvns>=2.3"
]
description = "A game engine based on pygame, which aims to make game development easier."
name = "linpg"
readme = "README.md"
requires-python = ">=3.12"
version = "4.0.0a0"
[project.entry-points.pyinstaller40]
hook-dirs = "linpg.__pyinstaller:get_hook_dirs"
[project.urls]
"Bug Tracker" = "https://github.com/LinpgFoundation/linpg/issues"
"Homepage" = "https://github.com/LinpgFoundation/linpg"
[tool.black]
line-length = 128
target-version = ['py313']
[tool.linpgtoolbox]
hidden_imports = [
"PIL.Image",
"PIL.ImageColor",
"PIL.ImageFilter",
"bsicons",
"numpy",
"pygame",
"pygame.gfxdraw",
"pyvns",
"tkinter",
"tkinter.messagebox"
]
includes = [
"CODE_OF_CONDUCT.md",
"LICENSE",
"README.md"
]
[tool.linpgtoolbox.options]
include_pyinstaller = true
[tool.mypy]
disallow_untyped_calls = true
# disallow_any_generics = true
disallow_untyped_defs = true
python_version = "3.13"
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
[tool.setuptools.package-data]
"*" = ["*"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.tomlsort]
all = true
in_place = true
spaces_indent_inline_array = 4