mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[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."
|
|
authors = ["Micah Lee <micah@micahflee.com>"]
|
|
license = "GPLv3+"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
altgraph = "*"
|
|
certifi = "*"
|
|
chardet = "*"
|
|
Click = "*"
|
|
Flask = "*"
|
|
Flask-HTTPAuth = "*"
|
|
future = "*"
|
|
idna = "*"
|
|
itsdangerous = "*"
|
|
Jinja2 = "*"
|
|
macholib = "*"
|
|
MarkupSafe = "*"
|
|
pefile = "*"
|
|
pycryptodome = "*"
|
|
PyQt5 = "5.14"
|
|
PyQt5-sip = "*"
|
|
PySocks = "*"
|
|
requests = "*"
|
|
stem = "*"
|
|
urllib3 = "*"
|
|
Werkzeug = "*"
|
|
flask-socketio = "^4.3.0"
|
|
eventlet = "^0.25.2"
|
|
qrcode = "^6.1"
|
|
psutil = "^5.7.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
atomicwrites = "*"
|
|
attrs = "*"
|
|
more-itertools = "*"
|
|
pluggy = "*"
|
|
py = "*"
|
|
pytest = "*"
|
|
pytest-faulthandler = "*"
|
|
pytest-qt = "*"
|
|
six = "*"
|
|
urllib3 = "*"
|
|
setuptools = "*"
|
|
pyinstaller = {version = "*", platform = "darwin"}
|
|
black = {version = "^19.10b0", allow-prereleases = true}
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|