-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (44 loc) · 1.22 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
[project]
name = "WinColl"
version = "1.1"
description = "Simple rocks-and-diamonds game"
license = {text = "GPL v3 or later"}
authors = [{name = "Reuben Thomas", email = "[email protected]"}]
readme = "README.md"
urls = {Homepage = "https://github.com/rrthomas/wincoll"}
requires-python = ">= 3.12"
dependencies = [
"chambercourt >= 0.9.25",
]
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 >= 62.3.0"]
[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"
base = "gui"
icon = "app-icon"
shortcut_name = "WinColl"
shortcut_dir = "DesktopFolder"
[tool.cxfreeze.build_exe]
include_msvcr = true