Py2exe-GUI/pyproject.toml
2022-09-03 19:41:26 +08:00

35 lines
684 B
TOML

[tool.poetry]
name = "py2exe-gui"
version = "0.0.1"
description = "基于PySide6的PyInstaller图形界面工具"
authors = ["muzing <muzi2001@foxmail.com>"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/muziing/Py2exe-GUI"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
PySide6 = "^6.3"
[tool.poetry.dev-dependencies]
black = "^22.8.0"
isort = "^5.10.1"
mypy = "^0.971"
pyinstaller = "^5.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true