Py2exe-GUI/pyproject.toml
muzing c14000de28 Version 0.1.7
尝试修复 PyPI 发行版 0.1.6 中的错误;
2022-12-01 10:40:31 +08:00

43 lines
980 B
TOML

[tool.poetry]
name = "py2exe-gui"
version = "0.1.7"
description = "GUI for PyInstaller, based on PySide6"
keywords = ["PyInstaller", "GUI", "PySide6"]
authors = ["muzing <muzi2001@foxmail.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/muziing/Py2exe-GUI"
exclude = ["src/py2exe_gui/Resources/Icons"]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
PySide6 = "~6.2.0" # latest LTS version
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/muziing/Py2exe-GUI/issues"
[tool.poetry.group.dev.dependencies]
# Sphinx = "^5.3.0"
black = "^22.10.0"
isort = "^5.10.0"
mypy = "^0.991"
pyinstaller = "^5.6"
[tool.black]
line-length = 88
target-version = ["py310"]
extend-exclude = "compiled_resources.py"
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"