2020-03-17 17:17:25 -04:00
[ tool . poetry ]
name = "onionshare"
version = "2.2"
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 = "*"
watchdog = "*"
psutil = "*"
2020-05-31 03:44:57 -04:00
qrcode = "^6.1"
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 = "*"
pyinstaller = { version = "*" , platform = "darwin" }
setuptools = { version = "*" , platform = "windows" }
2020-03-17 17:17:25 -04:00
[ build-system ]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"