-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (34 loc) · 927 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "wanda"
version = "1.0.0"
description = "Set wallpapers with keywords or randomly"
authors = ["kshib <ksyko@pm.me>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ksh-b/wanda"
repository = "https://github.com/ksh-b/wanda"
keywords = ["wallpaper", "reddit", "wallhaven", "earthview", "termux"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ksh-b/wanda/issues"
[tool.poetry.dependencies]
python = "^3.8"
lxml = "^5.2.2"
cloudscraper = "^1.2.71"
Pillow = "^10.3.0"
screeninfo = "^0.8.1"
colorthief = "^0.2.1"
filetype = "^1.2.0"
musicbrainzngs = "^0.7.1"
appdirs = "^1.4.4"
[tool.poetry.dev-dependencies]
pytest = "^8.0.0"
ruff = "^0.4.10"
mypy = "^1.10.0"
pytest-xdist = "^3.6.1"
pytest-cov = "^5.0.0"
pytest-rerunfailures = "^14.0"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
wanda = "wanda.wanda:run"