aboutsummaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control40
1 files changed, 40 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2e46114
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,40 @@
+Source: hex-zero
+Section: web
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+Build-Depends: debhelper-compat (= 12)
+Standards-Version: 4.5.0
+Homepage: https://gitlab.com/bgstack15/hex-zero
+
+Package: hex-zero
+Architecture: all
+Multi-Arch: foreign
+Pre-Depends: adduser
+Depends: apache2,
+ lsb-base,
+ python3-alembic,
+ python3-click,
+ python3-decorator,
+ python3-editor,
+ python3-flask,
+ python3-flask-migrate,
+ python3-flask-script,
+ python3-flask-sqlalchemy,
+ python3-humanize,
+ python3-itsdangerous,
+ python3-jinja2,
+ python3-magic,
+ python3-mako,
+ python3-markupsafe,
+ python3-requests,
+ python3-six,
+ python3-validators,
+ python3-werkzeug,
+ python3:any,
+ uwsgi-core,
+ uwsgi-plugin-python3,
+ ${misc:Depends},
+ ${shlibs:Depends}
+Description: 0x0 file uploading and hosting service
+ Using Flask, wsgi, and a http reverse proxy, hex-zero
+ is a small file hosting and uploading service.
bgstack15