-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 947 Bytes
/
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
[tool.poetry]
name = "yt_dlp_async"
version = "0.1.0"
description = "Asynchronous, multi-worker tool for fetching and processing YouTube audio data using yt-dlp, designed to aid scalable and efficient data collection and analysis for academic research projects."
authors = ["Brett <brettdavies@users.noreply.github.com>"]
readme = "README.md"
packages = [{ include = "yt_dlp_async" }]
[tool.poetry.dependencies]
python = "^3.12"
psycopg2-binary = "^2.9.9"
loguru = "^0.7.2"
fire = "^0.6.0"
yt-dlp = "^2024.7.16"
asyncpg = "^0.29.0"
python-dotenv = "^1.0.1"
aiomultiprocess = "^0.9.1"
aiohttp = "^3.10.0"
pandas = "^2.2.2"
sshtunnel = "^0.4.0"
[tool.poetry.scripts]
get-video-id = "yt_dlp_async.video_id:cmd"
get-metadata = "yt_dlp_async.video_metadata:cmd"
get-audio-file = "yt_dlp_async.video_file:cmd"
download-audio-file = "yt_dlp_async.video_download:cmd"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"