forked from jellyfin/jellyfin-apiclient-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 805 Bytes
/
pyproject.toml
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 = "[email protected]"},
]
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__"}