Difficult-Rocket/pyproject.toml

57 lines
1.0 KiB
TOML
Raw Permalink Normal View History

2023-01-27 20:20:28 +08:00
[tool.pdm.build]
includes = ["difficult_rocket"]
2022-10-29 19:13:00 +08:00
[build-system]
2023-01-27 20:20:28 +08:00
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
2023-01-20 23:30:27 +08:00
[project]
2023-01-27 20:20:28 +08:00
name = "difficult-rocket"
2023-07-16 02:00:29 +08:00
version = "0.8.6.0"
2023-01-27 20:20:28 +08:00
description = "A rocket game"
2023-01-20 23:30:27 +08:00
authors = [
2023-01-28 23:18:34 +08:00
{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"}
readme = "README.md"
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.4,<1.5.0",
"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"
line-length = 150
src = [
"Difficult_Rocket",
"libs/Difficult_Rocket"
]
exclude = [
'libs/pyglet',
2023-03-02 13:15:29 +08:00
'libs/pyperclip',
2023-02-25 09:18:41 +08:00
'libs/MCDR/serializer.py'
]
format = "grouped"