File: pyproject.toml

package info (click to toggle)
jellyfin-apiclient-python 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 276 kB
  • sloc: python: 1,690; sh: 5; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 805 bytes parent folder | download
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
[build-system]
requires = [ "setuptools>=61.0.0",]

[project]
name = "jellyfin-apiclient-python"
authors = [
  {name = "Izzie Walton", email = "izzie@iwalton.com"},
]
dynamic = ["version"]
description = "Python API client for Jellyfin"
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
    "Operating System :: OS Independent",
]
requires-python='>=3.6'
dependencies=[
    'requests',
    'urllib3',
    'websocket_client',
    'certifi'
]

[project.urls]
Repository = "https://github.com/iwalton3/jellyfin-apiclient-python"

[tool.setuptools]
packages = ["jellyfin_apiclient_python"]

[tool.setuptools.dynamic]
version = {attr = "jellyfin_apiclient_python.__version__"}