onionshare/desktop/pyproject.toml

32 lines
1009 B
TOML
Raw Normal View History

2021-12-19 20:17:54 -05:00
[tool.poetry]
name = "onionshare"
version = "2.6.1"
2021-12-19 20:17:54 -05:00
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+"
2021-12-19 20:17:54 -05:00
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
2021-12-21 17:15:20 -05:00
onionshare_cli = {path = "../cli", develop = true}
PySide6 = "6.4.0"
2021-12-19 20:17:54 -05:00
qrcode = "*"
werkzeug = "~2.0.3"
2023-04-23 15:16:49 -04:00
python-gnupg = "^0.5.0"
2021-12-19 20:17:54 -05:00
[tool.poetry.dev-dependencies]
click = "*"
2021-12-19 20:17:54 -05:00
black = "*"
2022-12-14 23:28:24 -05:00
pytest = ">=7.2.0"
pytest-faulthandler = "*"
pytest-qt = ">=4.2.0"
2022-10-09 10:20:25 -04:00
cx_freeze = "*"
2022-10-23 12:13:51 -04:00
importlib-metadata = "*"
2021-12-19 20:17:54 -05:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2021-12-19 20:17:54 -05:00
[tool.poetry.scripts]
2021-12-21 17:15:20 -05:00
onionshare = 'onionshare:main'
onionshare-cli = 'onionshare_cli:main'