onionshare/desktop/pyproject.toml

28 lines
917 B
TOML
Raw Normal View History

2021-12-19 20:17:54 -05:00
[tool.poetry]
name = "onionshare"
version = "4.2.1"
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.9,<3.10"
2021-12-21 17:15:20 -05:00
onionshare_cli = {path = "../cli", develop = true}
2021-12-19 20:17:54 -05:00
PySide2 = "5.15.2"
qrcode = "*"
2021-12-22 15:04:44 -05:00
cx_freeze = "*"
2021-12-19 20:17:54 -05:00
[tool.poetry.dev-dependencies]
black = "*"
pytest = "*"
pytest-faulthandler = "*"
pytest-qt = "*"
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'