-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 971 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 971 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
[project]
name = "ytextractor"
version = "0.1.0"
description = "CLI tool to fetch YouTube channel videos and thumbnails, and download videos"
authors = [{name = "Mic Mejia", email = "micmejia@inetvators.com"}]
license = "MIT"
readme = "README.md"
requires-python = ">=3.12"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
typer = "^0.16.0"
requests = "^2.32.4"
python-dotenv = "^1.1.1"
yt-dlp = "^2025.6.30"
[tool.poetry.scripts]
ytextractor = "ytextractor:app"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
flake8 = "^5.0.4"
commitizen = "^2.28.2"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_files = [
"pyproject.toml:^version"
]
version = "0.1.0"
update_changelog_on_bump = true
major_version_zero = false
annotated_tag = true
bump_message = "chore: release $current_version → $new_version"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"