From e074204e17e8b199374dd37b5562e838c4eda993 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Mon, 24 Feb 2020 16:19:07 -0800 Subject: [PATCH] Oops, dh-python should not be a build dep. And change classifiers in setup.py to a list instead of a tuple --- setup.py | 4 ++-- stdeb.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7eb3f48..1710600 100644 --- a/setup.py +++ b/setup.py @@ -31,10 +31,10 @@ setuptools.setup( ("share/dangerzone", file_list("share")), ("share/dangerzone/container", file_list("share/container")), ], - classifiers=( + classifiers=[ "Programming Language :: Python", "Intended Audience :: End Users/Desktop", "Operating System :: OS Independent", - ), + ], entry_points={"console_scripts": ["dangerzone = dangerzone:main"]}, ) diff --git a/stdeb.cfg b/stdeb.cfg index 1c9ccce..ac83fd5 100644 --- a/stdeb.cfg +++ b/stdeb.cfg @@ -1,6 +1,6 @@ [DEFAULT] Package3: dangerzone Depends3: docker.io, python3, python3-pyqt5, python3-appdirs, python3-click, python3-xdg, python3-requests -Build-Depends: python3, python-all, dh-python +Build-Depends: python3, python3-all Suite: bionic X-Python3-Version: >= 3.7 \ No newline at end of file