aboutsummaryrefslogtreecommitdiff
path: root/desktop/pyproject.toml
blob: 4c87cca8cb36309c9010312eb57f8b0aee40b7dc (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
[tool.poetry]
name = "onionshare"
version = "2.5"
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."
authors = ["Micah Lee <micah@micahflee.com>"]
license = "GPLv3+"

[tool.poetry.dependencies]
python = ">=3.6,<3.10"
onionshare_cli = {path = "../cli", develop = true}
PySide2 = "5.15.2"
qrcode = "*"
cx_freeze = "*"

[tool.poetry.dev-dependencies]
black = "*"
pytest = "*"
pytest-faulthandler = "*"
pytest-qt = "*"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
onionshare = 'onionshare:main'
onionshare-cli = 'onionshare_cli:main'