Difficult-Rocket/pyproject.toml

113 lines
2.4 KiB
TOML
Raw Normal View History

2023-01-20 23:30:27 +08:00
[project]
2023-01-27 20:20:28 +08:00
name = "difficult-rocket"
description = "A rocket game"
authors = [{ name = "shenjackyuanjie", email = "3695888@qq.com" }]
2023-01-20 23:30:27 +08:00
dependencies = [
2023-01-27 20:20:28 +08:00
"psutil<6.0.0,>=5.9.3",
"objprint<1.0.0,>=0.2.2",
"Pillow<10.0.0,>=9.2.0",
"tomlkit<1.0.0,>=0.11.6",
"rtoml<1.0.0,>=0.8.0",
2023-01-28 23:18:34 +08:00
"defusedxml>=0.7.1",
2023-01-20 23:30:27 +08:00
]
2023-01-27 20:20:28 +08:00
requires-python = ">=3.8"
license = { text = "CC-BY-NA-SA 4.0" }
2023-01-27 20:20:28 +08:00
readme = "README.md"
2023-12-03 20:22:58 +08:00
dynamic = ["version"]
[tool.setuptools]
packages = []
2023-12-03 20:22:58 +08:00
[tool.setuptools.dynamic]
version = { attr = "Difficult_Rocket.__version__" }
2023-01-27 20:20:28 +08:00
2023-01-28 23:18:34 +08:00
[project.optional-dependencies]
build = [
"setuptools-rust>=1.5.2,<=1.6.0",
"wheel>=0.38.4,<1.0.0",
"nuitka>=1.8.6",
2023-01-28 23:18:34 +08:00
"setuptools>=65.5.0",
"viztracer<1.0.0,>=0.15.4",
"vizplugins<1.0.0,>=0.1.2",
"ordered-set>=4.1.0",
"imageio>=2.25.0",
]
2023-02-25 09:18:41 +08:00
[tool.ruff]
target-version = "py38"
2023-12-03 16:53:57 +08:00
line-length = 90
src = ["Difficult_Rocket", "libs/utils", "mods"]
exclude = [
'libs/pyglet',
'libs/pyperclip',
'libs/lib_not_dr',
2023-12-03 16:53:57 +08:00
'libs/MCDR',
'libs/xmltodict',
'libs/utils/logger-old.py', # 旧版日志, 忽略他就好
]
2023-02-25 09:18:41 +08:00
2023-12-03 16:53:57 +08:00
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"W", # pycodestyle
]
ignore = ["I001"] # do not sort my imports
[tool.lndl.nuitka]
2023-12-03 18:40:03 +08:00
script = 'scripts/lndl-config.py'
2023-02-25 09:18:41 +08:00
[tool.lndl.nuitka.cli]
main = "DR.py"
2023-02-25 09:18:41 +08:00
lto = "yes"
clang = true
msvc = "latest"
2023-12-02 23:49:23 +08:00
mingw64 = false
standalone = true
2023-12-02 23:49:23 +08:00
output-dir = "build/nuitka"
run = false
# auto run after build
show-memory = false
show-progress = false
2023-12-02 23:49:23 +08:00
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 3695888@qq.com'
2023-12-03 18:16:57 +08:00
windows-icon-from-ico = 'assets/textures/icon.png'
macos-app-icon = 'assets/textures/icon.png'
linux-icon = 'assets/textures/icon.png'
2023-12-02 23:49:23 +08:00
nofollow-import-to = [
'objprint',
'PIL',
'cffi',
'pydoc',
'numpy',
'email',
'win32con',
'smtplib',
'win32evtlog',
'win32evtlogutil',
'win32api'
]
include-data-dir = [
['./config', './config'],
['./assets', './assets']
]
2023-12-03 19:04:10 +08:00
include-package = ['Difficult_Rocket.api']
2023-12-02 23:49:23 +08:00
# DR.api 没有直接 import, 所以需要手动添加
2023-12-02 23:49:23 +08:00
disable-plugin = ['pyqt5', 'tk-inter']