2020-03-17 18:17:25 -03:00
[ tool . poetry ]
name = "onionshare"
2020-08-24 23:10:31 -04:00
version = "2.3"
2020-03-17 18:17:25 -03: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."
2020-03-21 04:15:43 -03:00
authors = [ "Micah Lee <micah@micahflee.com>" ]
2020-03-17 18:17:25 -03:00
license = "GPLv3+"
[ tool . poetry . dependencies ]
2020-03-22 16:33:35 -03:00
python = "^3.7"
2020-03-21 04:15:43 -03:00
Click = "*"
Flask = "*"
Flask-HTTPAuth = "*"
2020-10-12 23:24:17 -03:00
flask-socketio = "*"
2020-03-21 04:15:43 -03:00
pycryptodome = "*"
2020-03-22 16:33:35 -03:00
PyQt5 = "5.14"
2020-03-21 04:15:43 -03:00
PyQt5-sip = "*"
PySocks = "*"
requests = "*"
stem = "*"
urllib3 = "*"
2020-10-12 23:24:17 -03:00
eventlet = "*"
qrcode = "*"
psutil = "*"
pywin32 = { version = "*" , platform = "win32" }
2020-03-17 18:17:25 -03:00
[ tool . poetry . dev-dependencies ]
2020-03-21 04:15:43 -03:00
atomicwrites = "*"
attrs = "*"
more-itertools = "*"
pluggy = "*"
py = "*"
pytest = "*"
pytest-faulthandler = "*"
pytest-qt = "*"
six = "*"
urllib3 = "*"
2020-06-30 14:26:44 -04:00
setuptools = "*"
2020-03-21 04:15:43 -03:00
pyinstaller = { version = "*" , platform = "darwin" }
2020-08-19 19:40:00 -04:00
black = { version = "^19.10b0" , allow-prereleases = true }
2020-03-17 18:17:25 -03:00
[ build-system ]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"