mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Oops, dh-python should not be a build dep. And change classifiers in setup.py to a list instead of a tuple
This commit is contained in:
parent
7113ac3c02
commit
e074204e17
2 changed files with 3 additions and 3 deletions
4
setup.py
4
setup.py
|
@ -31,10 +31,10 @@ setuptools.setup(
|
||||||
("share/dangerzone", file_list("share")),
|
("share/dangerzone", file_list("share")),
|
||||||
("share/dangerzone/container", file_list("share/container")),
|
("share/dangerzone/container", file_list("share/container")),
|
||||||
],
|
],
|
||||||
classifiers=(
|
classifiers=[
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Intended Audience :: End Users/Desktop",
|
"Intended Audience :: End Users/Desktop",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
),
|
],
|
||||||
entry_points={"console_scripts": ["dangerzone = dangerzone:main"]},
|
entry_points={"console_scripts": ["dangerzone = dangerzone:main"]},
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
Package3: dangerzone
|
Package3: dangerzone
|
||||||
Depends3: docker.io, python3, python3-pyqt5, python3-appdirs, python3-click, python3-xdg, python3-requests
|
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
|
Suite: bionic
|
||||||
X-Python3-Version: >= 3.7
|
X-Python3-Version: >= 3.7
|
Loading…
Reference in a new issue