onionshare/pyproject.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "onionshare"
version = "2.3"
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>"]
license = "GPLv3+"
[tool.poetry.dependencies]
python = "^3.7"
2020-03-21 04:15:43 -03:00
Click = "*"
Flask = "*"
Flask-HTTPAuth = "*"
flask-socketio = "*"
2020-03-21 04:15:43 -03:00
pycryptodome = "*"
PyQt5 = "5.14"
2020-03-21 04:15:43 -03:00
PyQt5-sip = "*"
PySocks = "*"
requests = "*"
stem = "*"
urllib3 = "*"
eventlet = "*"
qrcode = "*"
psutil = "*"
pywin32 = {version = "*", platform = "win32"}
[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 = "*"
setuptools = "*"
2020-03-21 04:15:43 -03:00
pyinstaller = {version = "*", platform = "darwin"}
black = {version = "^19.10b0", allow-prereleases = true}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"