-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 779 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
[project]
name = "ytm"
version = "0.1.0"
description = "YouTube Playlist Manager with time-travel capabilities"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"typer>=0.12.0",
"rich>=13.0.0",
"google-api-python-client>=2.100.0",
"google-auth-oauthlib>=1.0.0",
"google-auth-httplib2>=0.2.0",
"duckdb>=1.0.0",
"yt-dlp>=2024.0.0",
"undetected-chromedriver>=3.5.0",
"setuptools>=69.0.0",
"selenium>=4.15.0",
"pydantic>=2.0.0",
"pytz>=2024.0",
]
[project.scripts]
ytm = "ytm.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ytm"]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]