-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "jellyfin-sdk"
version = "0.3.0"
keywords = ["api", "sdk", "jellyfin", "dataclass", "openapi", "wrapper-api"]
description = "A Python SDK for Jellyfin."
readme = "README.md"
license = { text = "MPL-2.0" }
authors = [
{ name = "Webysther Sperandio", email = "webysther@gmail.com" }
]
requires-python = ">=3.10"
dependencies = [
"urllib3 >= 2.1.0, < 3.0.0",
"python-dateutil >= 2.8.2",
"aiohttp >= 3.8.4",
"aiohttp-retry >= 2.8.3",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
"lazy-imports >= 1, < 2",
"httpx >= 0.24.1, < 1.0.0",
"httpx-oauth >= 0.6.0, < 1.0.0",
"websockets >= 11.0.3, < 12.0.0",
"distro>=1.9.0",
"requests>=2.32.5",
"rich>=14.1.0",
]
[project.optional-dependencies]
legacy = ["jellyfin-apiclient-python"]
[project.urls]
GitHub = "https://github.com/webysther/jellyfin-sdk-python"
Documentation = "https://webysther.github.io/jellyfin-sdk-python.github.io"
[tool.uv.build-backend]
module-name = "jellyfin"
namespace = true
[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"