2024-05-03 16:27:19 +00:00
|
|
|
[tool.poetry-pyinstaller-plugin.scripts]
|
2024-05-05 14:27:17 +00:00
|
|
|
webp_to_png = { source = "webp_to_png/__main__.pyw", type = "onefile", bundle = false, icon="../../../../webp_to_png/data/favicon.ico", console=true}
|
2024-05-05 10:45:50 +00:00
|
|
|
|
2024-05-05 14:27:17 +00:00
|
|
|
# [tool.poetry-pyinstaller-plugin.collect]
|
2024-05-05 10:45:50 +00:00
|
|
|
# Collect all submodules, data files & binaries for 'package_A' and 'package_B'
|
2024-05-05 14:27:17 +00:00
|
|
|
# all = ["webp_to_png"]
|
2024-05-05 10:45:50 +00:00
|
|
|
|
2024-05-03 16:27:19 +00:00
|
|
|
|
|
|
|
[tool.poetry]
|
|
|
|
name = "webp-to-png"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["ZtRXR <Zengtudor@outlook.com>"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.12"
|
|
|
|
pillow = "^10.3.0"
|
|
|
|
pysimplegui = "4.59"
|
|
|
|
|
|
|
|
|
2024-05-05 09:50:32 +00:00
|
|
|
[[tool.poetry.source]]
|
|
|
|
name = "mirrors"
|
|
|
|
url = "https://mirrors.cernet.edu.cn/pypi/web/simple/"
|
|
|
|
priority = "primary"
|
|
|
|
|
2024-05-03 16:27:19 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|