-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
103 lines (87 loc) · 2.08 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = "difficult-rocket"
description = "A rocket game"
authors = [{ name = "shenjackyuanjie", email = "[email protected]" }]
requires-python = ">=3.8"
license = { text = "MPL-2.0" }
readme = "README.md"
dynamic = ["version"]
[tool.setuptools]
packages = []
[tool.setuptools.dynamic]
version = { attr = "Difficult_Rocket.__version__" }
[tool.pyright]
include = ["Difficult_Rocket", "libs/utils", "mods"]
exclude = [
'libs/pyglet',
'libs/pyperclip',
'libs/lib_not_dr',
'libs/MCDR',
'libs/xmltodict',
]
pythonVersion = "3.8"
[tool.ruff]
target-version = "py38"
line-length = 90
src = ["Difficult_Rocket", "libs/utils", "mods"]
exclude = [
'libs/pyglet',
'libs/pyperclip',
'libs/lib_not_dr',
'libs/MCDR',
'libs/xmltodict',
]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"W", # pycodestyle
]
ignore = ["I001"] # do not sort my imports
[tool.lndl.nuitka]
script = 'scripts/lndl-config.py'
[tool.lndl.nuitka.cli]
main = "DR.py"
lto = "yes"
clang = false
msvc = "latest"
mingw64 = false
standalone = true
output-dir = "build\\nuitka"
run = false
# auto run after build
show-memory = false
show-progress = false
disable-console = false
assume-yes-for-download = true
company-name = 'tool-shenjack-workshop'
product-name = 'Difficult Rocket'
file-version = false # require script
product-version = false # require script
macos-app-version = false # require script
file-description = 'Difficult Rocket a rocket game'
copyright = 'Copyright © 2020-2023 by shenjackyuanjie [email protected]'
windows-icon-from-ico = '.\assets\textures\icon.png'
macos-app-icon = '.\assets\textures\icon.png'
linux-icon = './assets/textures/icon.png'
nofollow-import-to = [
'objprint',
'PIL',
'cffi',
'pydoc',
'numpy',
'email',
'win32con',
'smtplib',
'win32evtlog',
'win32evtlogutil',
'win32api'
]
include-data-dir = [
['config', 'config'],
['assets', 'assets']
]
include-package = ['Difficult_Rocket.api']
# DR.api 没有直接 import, 所以需要手动添加
disable-plugin = ['pyqt5', 'tk-inter']