Skip to content

Commit

Permalink
Use find_packages in setup.py. Use bash for export postrm.
Browse files Browse the repository at this point in the history
  • Loading branch information
rocodes committed Feb 29, 2024
1 parent 2594a50 commit 8f66599
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
install_requires=["SQLAlchemy", "alembic", "securedrop-sdk", "python-dateutil", "arrow"],
python_requires=">=3.5",
url="https://github.com/freedomofpress/securedrop-client",
packages=["securedrop_client", "securedrop_client.gui", "securedrop_client.resources"],
packages=setuptools.find_packages(include=["securedrop_client", "securedrop_client.*"]),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down
3 changes: 1 addition & 2 deletions debian/securedrop-export.postrm
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#!/bin/sh
#!/bin/bash
# postrm script for securedrop-export
#
# see: dh_installdeb(1)
# shellcheck disable=SC3010

set -e

Expand Down

0 comments on commit 8f66599

Please sign in to comment.