-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.87 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
49
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "streamsnapper"
version = "0.3.0"
description = "StreamSnapper is an intuitive library designed to simplify, improve, and organize YouTube and Youtube Music media streams. It offers scraping functions with higher speed extraction and efficiency with the latest tools to perform such processes."
authors = ["henrique-coder <hjyz6rqyb@mozmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/henrique-coder/streamsnapper"
documentation = "https://github.com/henrique-coder/streamsnapper/blob/main/README.md"
repository = "https://github.com/henrique-coder/streamsnapper"
maintainers = ["henrique-coder <hjyz6rqyb@mozmail.com>"]
packages = [{ include = "streamsnapper" }]
include = ["LICENSE"]
keywords = ["stream", "snapper", "scraper", "downloader", "merger", "youtube"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/henrique-coder/streamsnapper/issues"
"Changelog" = "https://github.com/henrique-coder/streamsnapper/releases/latest"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "0.28.1"
scrapetube = "2.5.1"
turbodl = "0.1.8"
yt-dlp = "2025.1.15"
[tool.poetry.group.test.dependencies]
pytest = "8.3.4"
[tool.poetry.group.format.dependencies]
ruff = "0.9.2"