[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 "] license = "GPLv3+" [tool.poetry.dependencies] python = ">=3.9,<3.10" onionshare_cli = {path = "../cli", develop = false} PySide2 = "5.15.2" qrcode = "*" cx_freeze = {version = "*", platform = "win32"} [tool.poetry.dev-dependencies] black = "*" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] onionshare = 'onionshare:main'