onionshare/desktop/pyproject.toml

30 lines
951 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.7,<3.11"
2021-12-21 17:15:20 -05:00
onionshare_cli = {path = "../cli", develop = true}
PySide2 = "5.15.2.1"
2021-12-19 20:17:54 -05:00
qrcode = "*"
werkzeug = "~2.0.3"
2021-12-19 20:17:54 -05:00
[tool.poetry.dev-dependencies]
click = "*"
2021-12-19 20:17:54 -05:00
black = "*"
pytest = "*"
pytest-faulthandler = "*"
pytest-qt = "*"
2022-10-09 10:20:25 -04:00
cx_freeze = "*"
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'