X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=setup.py;h=4e06e60020b982973076cbd3f574dc9cecda38a4;hb=4b9d49c18315476b1a95878c2d84e8e8299db6c9;hp=e42d83b419fb88c48efa41659f51da2756f25c00;hpb=22f12002449910ed3d374b10581fa1cd918b88cd;p=torbrowser-launcher.git diff --git a/setup.py b/setup.py index e42d83b..4e06e60 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,9 @@ def create_mo_files(): return [] domain = "torbrowser-launcher" mo_files = [] - po_files = [f for f in next(os.walk(po_dir))[2] if os.path.splitext(f)[1] == ".po"] + po_files = sorted( + [f for f in next(os.walk(po_dir))[2] if os.path.splitext(f)[1] == ".po"] + ) for po_file in po_files: filename, extension = os.path.splitext(po_file) mo_file = domain + ".mo" @@ -116,4 +118,11 @@ Browser. packages=["torbrowser_launcher"], scripts=["torbrowser-launcher"], data_files=datafiles, + install_requires=[ + 'gpg', + 'packaging', + 'PyQt5', + 'requests', + 'PySocks', + ], )