2024-11-20 04:53:04 -04:00
|
|
|
[tool.poetry]
|
2024-11-20 19:34:35 -04:00
|
|
|
name = "DailyWallpaper"
|
2024-11-20 04:53:04 -04:00
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Isaac Shoebottom <ir.shoebottom@gmail.com>"]
|
|
|
|
readme = "README.md"
|
2024-11-20 19:34:35 -04:00
|
|
|
packages = [
|
|
|
|
{ include = "providers"},
|
|
|
|
{ include = "settings"},
|
|
|
|
{ include = "app"}
|
|
|
|
]
|
2024-11-20 04:53:04 -04:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
|
|
|
requests = "^2.32"
|
|
|
|
urllib3 = "^1.26"
|
2024-11-20 16:34:20 -04:00
|
|
|
python-slugify = "^8.0"
|
|
|
|
tomlkit = "^0.13.2"
|
2024-11-20 18:22:46 -04:00
|
|
|
croniter = "^5.0"
|
2024-11-21 00:57:43 -04:00
|
|
|
pywin32 = "^308"
|
2024-11-20 04:53:04 -04:00
|
|
|
|
2024-11-20 18:56:19 -04:00
|
|
|
[tool.poetry.scripts]
|
2024-11-20 19:34:35 -04:00
|
|
|
DailyWallpaper = "app.main:main"
|
2024-11-20 04:53:04 -04:00
|
|
|
|
2024-11-21 01:10:58 -04:00
|
|
|
# https://pypi.org/project/poetry-pyinstaller-plugin/
|
|
|
|
# https://stackoverflow.com/a/78050613
|
2024-11-21 01:41:46 -04:00
|
|
|
[tool.poetry-pyinstaller-plugin.package]
|
|
|
|
providers = "."
|
|
|
|
settings = "."
|
|
|
|
|
2024-11-21 01:10:58 -04:00
|
|
|
[tool.poetry-pyinstaller-plugin.scripts]
|
2024-11-21 01:41:46 -04:00
|
|
|
DailyWallpaper = { source = "app/main.py", type = "onefile", bundle = false }
|
2024-11-21 01:10:58 -04:00
|
|
|
|
2024-11-20 04:53:04 -04:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|