Difficult-Rocket/pyproject.toml

49 lines
1.0 KiB
TOML
Raw Normal View History

2022-10-29 19:13:00 +08:00
[tool.poetry.dependencies]
python = ">=3.8"
psutil = "^5.9.3"
objprint = "^0.2.2"
Pillow = "^9.2.0"
tomlkit = "^0.11.6"
2022-11-11 09:33:34 +08:00
rtoml = "^0.8.0"
2022-10-29 19:13:00 +08:00
setuptools = "^65.5.0"
viztracer = "^0.15.4"
vizplugins = "^0.1.2"
Cython = "^0.29.32"
2022-12-11 10:30:10 +08:00
defusedxml = "*"
2022-10-29 19:13:00 +08:00
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"
version = "0.7.0.0"
description = "A rocket game"
2023-01-20 23:30:27 +08:00
authors = [
2023-01-27 20:20:28 +08:00
{name = "shenjackyuanjie", email = "3695888@qq.com"},
{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",
"setuptools<66.0.0,>=65.5.0",
"viztracer<1.0.0,>=0.15.4",
"vizplugins<1.0.0,>=0.1.2",
"Cython<1.0.0,>=0.29.32",
"defusedxml",
"nuitka>=1.4",
"pymunk>=6.4.0",
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"
[project.urls]