2020-03-17 17:17:25 -04:00
[ tool . poetry ]
name = "onionshare"
2020-08-24 23:10:31 -04:00
version = "2.3"
2020-03-17 17:17:25 -04: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 03:15:43 -04:00
authors = [ "Micah Lee <micah@micahflee.com>" ]
2020-03-17 17:17:25 -04:00
license = "GPLv3+"
[ tool . poetry . dependencies ]
2020-03-22 15:33:35 -04:00
python = "^3.7"
2020-03-21 03:15:43 -04:00
altgraph = "*"
certifi = "*"
chardet = "*"
Click = "*"
Flask = "*"
Flask-HTTPAuth = "*"
future = "*"
idna = "*"
itsdangerous = "*"
Jinja2 = "*"
macholib = "*"
MarkupSafe = "*"
pefile = "*"
pycryptodome = "*"
2020-03-22 15:33:35 -04:00
PyQt5 = "5.14"
2020-03-21 03:15:43 -04:00
PyQt5-sip = "*"
PySocks = "*"
requests = "*"
stem = "*"
urllib3 = "*"
Werkzeug = "*"
2020-05-01 17:28:31 -04:00
flask-socketio = "^4.3.0"
2020-05-03 18:11:38 -04:00
eventlet = "^0.25.2"
2020-05-31 03:44:57 -04:00
qrcode = "^6.1"
2020-08-20 18:37:20 -04:00
psutil = "^5.7.2"
2020-03-17 17:17:25 -04:00
[ tool . poetry . dev-dependencies ]
2020-03-21 03:15:43 -04: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 03:15:43 -04:00
pyinstaller = { version = "*" , platform = "darwin" }
2020-08-19 19:40:00 -04:00
black = { version = "^19.10b0" , allow-prereleases = true }
2020-03-17 17:17:25 -04:00
[ build-system ]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"