-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (58 loc) · 1.41 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (58 loc) · 1.41 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
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "WinColl"
version = "1.3.11"
description = "Simple rocks-and-diamonds game"
license = "GPL-3.0-or-later"
authors = [{name = "Reuben Thomas", email = "rrt@sc3d.org"}]
readme = "README.md"
urls = {Homepage = "https://github.com/rrthomas/wincoll"}
requires-python = ">= 3.12"
dependencies = [
"chambercourt >= 0.9.62",
]
classifiers = [
"Environment :: X11 Applications",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Topic :: Games/Entertainment :: Puzzle Games",
"Programming Language :: Python :: 3",
]
[project.scripts]
wincoll = "wincoll:main"
[build-system]
requires = ["build", "setuptools"]
[tool.setuptools]
packages = ["wincoll"]
[tool.setuptools.package-data]
wincoll = [
"**/*.png",
"**/*.wav",
"**/*.tmx",
"**/*.tsx",
"**/*.ttf",
"**/*.mo",
]
[tool.pyright]
include = ["wincoll"]
[tool.ruff.lint]
select = ["D", "E", "F", "I", "UP"]
ignore = ["D1", "D401", "E501"]
[tool.ruff.lint.isort]
lines-after-imports = 2
[tool.ruff.lint.pydocstyle]
convention = "google"
[[tool.cxfreeze.executables]]
script = "wincoll/__main__.py"
target_name = "WinColl"
base = "gui"
icon = "app-icon"
shortcut_name = "WinColl"
shortcut_dir = "DesktopFolder"
[tool.cxfreeze.build_exe]
include_msvcr = true
[tool.cxfreeze.bdist_mac]
bundle_name = "WinColl"
iconfile = "app-icon.icns"
[tool.cxfreeze.bdist_dmg]
applications_shortcut = true
background = "builtin-arrow"