2021-12-19 20:17:54 -05:00
[ tool . poetry ]
name = "onionshare"
2022-10-17 21:15:01 -04:00
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+"
2020-10-13 01:40:55 -04:00
2021-12-19 20:17:54 -05:00
[ tool . poetry . dependencies ]
2023-02-05 19:41:07 -05:00
python = ">=3.8,<3.11"
2021-12-21 17:15:20 -05:00
onionshare_cli = { path = "../cli" , develop = true }
2022-12-30 16:23:52 -05:00
PySide6 = "6.4.0"
2021-12-19 20:17:54 -05:00
qrcode = "*"
2023-05-22 23:19:18 -04:00
werkzeug = "*"
python-gnupg = "*"
2020-10-13 01:40:55 -04:00
2021-12-19 20:17:54 -05:00
[ tool . poetry . dev-dependencies ]
2022-03-31 21:34:41 -04:00
click = "*"
2021-12-19 20:17:54 -05:00
black = "*"
2023-05-22 23:19:18 -04:00
pytest = "*"
2021-12-19 20:33:11 -05:00
pytest-faulthandler = "*"
2023-05-22 23:19:18 -04:00
pytest-qt = "*"
2022-10-09 10:20:25 -04:00
cx_freeze = "*"
2022-10-23 12:13:51 -04:00
importlib-metadata = "*"
2020-10-13 01:40:55 -04:00
2021-12-19 20:17:54 -05:00
[ build-system ]
requires = [ "poetry-core>=1.0.0" ]
build-backend = "poetry.core.masonry.api"
2020-10-13 01:40:55 -04:00
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'