Релиз

This commit is contained in:
2025-12-17 06:30:13 +03:00
parent bb99154131
commit fbc628bc3b
11 changed files with 5246 additions and 334 deletions

View File

@ -1,6 +1,6 @@
[project]
name = "twitchclient"
version = "0.2.0"
version = "1.0.0"
description = "Client for Twitch API"
readme = "README.md"
authors = [
@ -18,10 +18,10 @@ build-backend = "uv_build"
[project.optional-dependencies]
dev = [
"ruff==0.14.2",
"pyright==1.1.406",
"poethepoet==0.37.0",
"pre-commit==4.3.0",
"ruff==0.14.9",
"pyright==1.1.407",
"poethepoet==0.38.0",
"pre-commit==4.5.0",
]
[[tool.uv.index]]
@ -41,6 +41,10 @@ _lint = "pre-commit run --all-files"
lint = ["_git", "_lint"]
check = "uv pip ls --outdated"
major = "uv version --bump major"
minor = "uv version --bump minor"
patch = "uv version --bump patch"
[tool.pyright]
venvPath = "."
venv = ".venv"
@ -50,6 +54,7 @@ strictSetInference = true
deprecateTypingAliases = true
typeCheckingMode = "strict"
pythonPlatform = "All"
stubPath = "typings"
[tool.ruff]
target-version = "py313"