twitch-dl/pyproject.toml

65 lines
1.3 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-08-30 06:05:03 +00:00
"m3u8>=3.0.0,<7.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",
]
2024-04-24 06:10:08 +00:00
test = [
"pytest",
"vermin",
]
2024-03-23 06:31:40 +00:00
[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]
typeCheckingMode = "strict"
2024-04-23 16:09:30 +00:00
pythonVersion = "3.8"
2024-03-23 06:31:40 +00:00
[tool.ruff]
line-length = 100
2024-04-04 06:20:10 +00:00
target-version = "py38"