-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.17 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
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "HolyImageDownloader"
dynamic = ['version']
dependencies = [
"aiofiles==24.1.0",
"aiohttp==3.11.10",
"beautifulsoup4==4.12.3",
"json5==0.10.0",
"js2py==0.74",
"lxml==5.3.0",
"pillow==11.0.0",
"typer==0.15.1"
]
requires-python = ">=3.10"
authors = [
{name = "holy-jesus", email = "[email protected]"}
]
maintainers = [
{name = "holy-jesus", email = "[email protected]"}
]
description = "Downloads images from Google in matter seconds."
readme = "README.md"
license = {text = "MIT"}
keywords = ["google", "google images", "images", "download images"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/holy-jesus/HolyImageDownloader"
Issues = "https://github.com/holy-jesus/HolyImageDownloader/issues"
[project.scripts]
ImageDownloader = "HolyImageDownloader.__main__:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["HolyImageDownloader*"]
exclude = ["reverse*"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "HolyImageDownloader.__version__"}