summaryrefslogtreecommitdiff
path: root/tmdbv3api/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'tmdbv3api/debian/control')
-rw-r--r--tmdbv3api/debian/control21
1 files changed, 21 insertions, 0 deletions
diff --git a/tmdbv3api/debian/control b/tmdbv3api/debian/control
new file mode 100644
index 0000000..a44ad02
--- /dev/null
+++ b/tmdbv3api/debian/control
@@ -0,0 +1,21 @@
+Source: tmdbv3api
+Section: python
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+Build-Depends: debhelper-compat (= 13),
+ dh-python,
+ python3,
+Standards-Version: 4.6.1
+Homepage: https://github.com/AnthonyBloomer/tmdbv3api
+Rules-Requires-Root: no
+
+Package: tmdbv3api
+Architecture: any
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${python3:Depends},
+ python3:any
+Description: lightweight python library for The Movie Database (TMDb) API
+ Python interface to The Movie Database API, which is a
+ resource for developers to integrate movie, TV show and
+ cast data along with posters or movie fan art.
+ themoviedb.org is a free and community edited database.
bgstack15