mirror of
https://github.com/muziing/Py2exe-GUI.git
synced 2025-01-27 17:02:55 +08:00
35 lines
684 B
TOML
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
|