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