Files
OqeeRewind/pyproject.toml
√(noham)² aef746f4b9 Improved code structure and add pylint to dev dependencies
Improved code structure and docstrings in utils/input.py, updated imports for clarity, and enhanced validation error handling. Added pylint to the dev dependency group in pyproject.toml for code quality checks. Removed unused imports from main.py.
2025-11-16 20:59:32 +01:00

34 lines
573 B
TOML

[project]
name = "oqee-rewind"
version = "0.1.0"
description = "Oqee TV Live Downloader"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "NohamR" }
]
dependencies = [
"aiohttp==3.13.2",
"InquirerPy==0.3.4",
"python-dotenv==1.2.1",
"pywidevine==1.9.0",
"Requests==2.32.5",
]
[project.scripts]
oqee-rewind = "main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
[dependency-groups]
dev = [
"pylint>=3.3.9",
]