mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
66 lines
1.4 KiB
TOML
66 lines
1.4 KiB
TOML
[project]
|
|
name = "viu-media"
|
|
version = "3.2.8"
|
|
description = "A browser anime site experience from the terminal"
|
|
license = "UNLICENSE"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"click>=8.1.7",
|
|
"httpx>=0.28.1",
|
|
"inquirerpy>=0.3.4",
|
|
"pydantic>=2.11.7",
|
|
"rich>=13.9.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
viu = 'viu_media:Cli'
|
|
|
|
[project.optional-dependencies]
|
|
standard = [
|
|
"thefuzz>=0.22.1",
|
|
"yt-dlp>=2025.7.21",
|
|
"pycryptodomex>=3.23.0",
|
|
"pypiwin32; sys_platform == 'win32'", # For Windows-specific functionality
|
|
"pyobjc; sys_platform == 'darwin'", # For macOS-specific functionality
|
|
"dbus-python; sys_platform == 'linux'", # For Linux-specific functionality (e.g., notifications),
|
|
"plyer>=2.1.0",
|
|
"lxml>=6.0.0"
|
|
]
|
|
notifications = [
|
|
"dbus-python>=1.4.0",
|
|
"plyer>=2.1.0",
|
|
]
|
|
mpv = [
|
|
"mpv>=1.0.7",
|
|
]
|
|
torrent = ["libtorrent>=2.0.11"]
|
|
lxml = ["lxml>=6.0.0"]
|
|
discord = ["pypresence>=4.3.0"]
|
|
download = [
|
|
"pycryptodomex>=3.23.0",
|
|
"yt-dlp>=2025.7.21",
|
|
]
|
|
torrents = [
|
|
"libtorrent>=2.0.11",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pre-commit>=4.0.1",
|
|
"pyinstaller>=6.11.1",
|
|
"pyright>=1.1.384",
|
|
"pytest>=8.3.3",
|
|
"pytest-httpx>=0.35.0",
|
|
"ruff>=0.6.9",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"integration: marks tests as integration tests that require a live network connection",
|
|
]
|