twitch-dl/pyproject.toml

59 lines
1.2 KiB
TOML
Raw Normal View History

2024-03-23 06:31:40 +00:00
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "twitch-dl"
authors = [{ name="Ivan Habunek", email="ivan@habunek.com" }]
description = "Quickly download videos from twitch.tv from the comort of your terminal emulator"
keywords=["twitch", "vod", "video", "download"]
readme = "README.md"
license = { file="LICENSE" }
2024-03-23 07:55:38 +00:00
requires-python = ">=3.8"
2024-03-23 06:31:40 +00:00
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
2024-03-23 07:56:11 +00:00
"click>=8.0.0,<9.0.0",
2024-03-23 06:31:40 +00:00
"httpx>=0.17.0,<1.0.0",
2024-03-23 07:56:11 +00:00
"m3u8>=1.0.0,<4.0.0",
2024-03-23 06:31:40 +00:00
]
[tool.setuptools]
packages = [
"twitchdl",
"twitchdl.commands",
]
[tool.setuptools_scm]
[project.optional-dependencies]
dev = [
"build",
"pytest",
"pyyaml",
"setuptools",
"twine",
"vermin",
]
[project.urls]
"Homepage" = "https://twitch-dl.bezdomni.net/"
"Source" = "https://github.com/ihabunek/twitch-dl"
[project.scripts]
2024-03-23 09:50:42 +00:00
twitch-dl = "twitchdl.cli:cli"
2024-03-23 06:31:40 +00:00
[tool.pyright]
include = ["twitchdl"]
typeCheckingMode = "strict"
[tool.ruff]
line-length = 100