mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
53 lines
1.5 KiB
TOML
53 lines
1.5 KiB
TOML
[tool.poetry]
|
|
name = "onionshare_cli"
|
|
version = "2.6.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."
|
|
authors = ["Micah Lee <micah@micahflee.com>"]
|
|
license = "GPLv3+"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Framework :: Flask",
|
|
"Topic :: Communications :: File Sharing",
|
|
"Topic :: Security :: Cryptography",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Operating System :: OS Independent",
|
|
"Environment :: Web Environment",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8,<3.12"
|
|
click = "*"
|
|
flask = "2.3.2"
|
|
flask-compress = "^1.13"
|
|
flask-socketio = "5.3.4"
|
|
psutil = "*"
|
|
pysocks = "*"
|
|
requests = {extras = ["socks"], version = "*"}
|
|
unidecode = "*"
|
|
urllib3 = "*"
|
|
eventlet = "*"
|
|
setuptools = "*"
|
|
pynacl = "*"
|
|
colorama = "*"
|
|
gevent-websocket = "*"
|
|
stem = "1.8.1"
|
|
waitress = "^2.1.2"
|
|
werkzeug = ">=2.3.4"
|
|
packaging = "^23.1"
|
|
gevent = "^23.9.1"
|
|
wheel = "^0.41.2"
|
|
cffi = "^1.15.1"
|
|
cython = "^3.0.2"
|
|
qrcode = "^7.4.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = ">=7.2.0"
|
|
|
|
[tool.poetry.scripts]
|
|
onionshare-cli = 'onionshare_cli:main'
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|