summaryrefslogtreecommitdiff
path: root/desktop/pyproject.toml
blob: cf4ace2ee41259ee83ebdfb05e7472081f5fd489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.briefcase]
project_name = "OnionShare"
bundle = "org.onionshare"
version = "2.3.dev1"
url = "https://onionshare.org"
license = "GPLv3"
author = 'Micah Lee'
author_email = "micah@micahflee.com"

[tool.briefcase.app.onionshare]
formal_name = "OnionShare"
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
icon = "src/onionshare/resources/onionshare"
sources = ['src/onionshare']
requires = [
    "./onionshare_cli-2.3.dev1-py3-none-any.whl",
    "Click",
    "eventlet",
    "Flask",
    "Flask-HTTPAuth",
    "flask-socketio",
    "psutil",
    "pycryptodome",
    "PySocks",
    "pyside2==5.15.1",
    "qrcode",
    "requests",
    "stem",
    "urllib3",
]

[tool.briefcase.app.onionshare.macOS]
requires = []

[tool.briefcase.app.onionshare.linux]
requires = []
system_requires = [
    "tor",
    "obfs4proxy",
    "gcc",
    "python3-dev",
]

[tool.briefcase.app.onionshare.windows]
requires = ["pywin32"]

# Mobile deployments
[tool.briefcase.app.onionshare.iOS]
requires = []

[tool.briefcase.app.onionshare.android]
requires = []