2022-09-03 19:41:26 +08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "py2exe-gui"
|
2022-12-01 10:31:53 +08:00
|
|
|
version = "0.1.7"
|
2022-09-05 16:18:41 +08:00
|
|
|
description = "GUI for PyInstaller, based on PySide6"
|
2022-09-04 15:11:43 +08:00
|
|
|
keywords = ["PyInstaller", "GUI", "PySide6"]
|
2022-09-03 19:41:26 +08:00
|
|
|
authors = ["muzing <muzi2001@foxmail.com>"]
|
2022-09-04 15:11:43 +08:00
|
|
|
license = "GPL-3.0-or-later"
|
2022-12-02 17:26:02 +08:00
|
|
|
readme = ["README.md", "README_zh.md"]
|
2022-09-03 19:41:26 +08:00
|
|
|
repository = "https://github.com/muziing/Py2exe-GUI"
|
2022-12-01 10:21:03 +08:00
|
|
|
exclude = ["src/py2exe_gui/Resources/Icons"]
|
2022-09-03 19:41:26 +08:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-12-03 10:15:11 +08:00
|
|
|
python = ">=3.7,<3.12"
|
|
|
|
pyside6 = "^6.4.0"
|
2022-09-03 19:41:26 +08:00
|
|
|
|
2022-09-19 17:10:12 +08:00
|
|
|
[tool.poetry.urls]
|
|
|
|
"Bug Tracker" = "https://github.com/muziing/Py2exe-GUI/issues"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-11-30 17:11:11 +08:00
|
|
|
# Sphinx = "^5.3.0"
|
2022-10-09 21:18:15 +08:00
|
|
|
black = "^22.10.0"
|
2022-09-05 16:18:41 +08:00
|
|
|
isort = "^5.10.0"
|
2022-11-17 22:14:25 +08:00
|
|
|
mypy = "^0.991"
|
2022-12-07 09:38:30 +08:00
|
|
|
pyinstaller = "^5.7.0"
|
2022-09-03 19:41:26 +08:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
2022-11-28 20:33:45 +08:00
|
|
|
target-version = ["py310"]
|
|
|
|
extend-exclude = "compiled_resources.py"
|
2022-09-03 19:41:26 +08:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length = 88
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
python_version = "3.10"
|
|
|
|
warn_return_any = true
|
2022-09-19 17:10:12 +08:00
|
|
|
ignore_missing_imports = true
|
2022-09-04 15:11:43 +08:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|