summaryrefslogtreecommitdiff
path: root/jellyfin-apiclient-python/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'jellyfin-apiclient-python/debian/control')
-rw-r--r--jellyfin-apiclient-python/debian/control20
1 files changed, 20 insertions, 0 deletions
diff --git a/jellyfin-apiclient-python/debian/control b/jellyfin-apiclient-python/debian/control
new file mode 100644
index 0000000..38c7bd8
--- /dev/null
+++ b/jellyfin-apiclient-python/debian/control
@@ -0,0 +1,20 @@
+Source: jellyfin-apiclient-python
+Section: video
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+Build-Depends: debhelper-compat (= 13),
+ dh-python,
+ python3-all-dev
+Standards-Version: 4.5.1
+Homepage: https://github.com/jellyfin/jellyfin-apiclient-python
+Rules-Requires-Root: no
+
+Package: jellyfin-apiclient-python
+Architecture: any
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: python API client for Jellyfin
+ API client from Jellyfin Kodi extracted as a python
+ package so that other users may use the API without
+ maintaining a fork of the API client. See also
+ pip install jellyfin-apiclient-python
bgstack15