-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.04 KB
/
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
40
[tool.poetry]
name = "wallpaper-downloader"
version = "0.0.2"
description = "wallpaper-downloader is a simple Python module to easily download wallpaper images from websites that we supported."
authors = ["Osama Mohammed Al-zabidi <[email protected]>"]
license = "GPL-3.0"
readme = ["README.md", "CHANGELOG.md"]
keywords = [
"wallpaper",
"image",
"internet",
"downloader",
"fetch",
"web",
"scrape",
"bs4",
"script",
"automation"
]
repository = "https://github.com/omamkaz/wallpaper-downloader"
packages = [{ include = "walldown" }]
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = ">=3.7, <3.13"
requests = "==2.31.0"
beautifulsoup4 = "==4.11.1"
lxml = "==4.9.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"