-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 965 Bytes
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
[project]
name = "pexel-downloader"
dynamic = ["version"]
description = "Download images and videos from Pexels."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "Luis Condados", email = "condadoslgpc@gmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"joblib",
"typer",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/Gabriellgpc/pexel-downloader"
Repository = "https://github.com/Gabriellgpc/pexel-downloader"
[project.scripts]
pexel-downloader = "pexel_downloader.cli:cli"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "pexel_downloader/_version.py"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
]