Py2exe-GUI/pyproject.toml
muzing 5c4f673ad4 Update pyproject.toml
项目版本更新至 `0.1.2`;
开发依赖项使用 Poetry 的新语法;
添加开发依赖项:`Sphinx`;
调整 `mypy` 配置使其忽略误报的导入缺失错误;
2022-09-19 17:10:12 +08:00

41 lines
884 B
TOML

[tool.poetry]
name = "py2exe-gui"
version = "0.1.2"
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"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
PySide6 = "~6.2.0" # LTS version
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/muziing/Py2exe-GUI/issues"
[tool.poetry.group.dev.dependencies]
Sphinx = "^5.1.0"
black = "^22.8.0"
isort = "^5.10.0"
mypy = "^0.971"
pyinstaller = "^5.4"
[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
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"