2020-03-18 02:47:25 +05:30
[ tool . poetry ]
2020-10-12 22:40:55 -07:00
name = "onionshare_cli"
2022-10-18 12:15:01 +11:00
version = "2.6.1"
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+"
2020-10-12 22:40:55 -07:00
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" ,
]
2020-03-18 02:47:25 +05:30
[ tool . poetry . dependencies ]
2023-05-21 11:11:16 -07:00
python = ">=3.8,<3.12"
2020-11-08 13:34:19 -08:00
click = "*"
2023-05-22 20:19:18 -07:00
flask = "2.3.2"
2023-05-29 14:46:17 +10:00
flask-compress = "^1.13"
2023-05-22 05:42:27 +00:00
flask-socketio = "5.3.4"
2020-11-17 17:45:04 -08:00
psutil = "*"
2020-11-08 13:34:19 -08:00
pysocks = "*"
2021-06-01 19:39:34 -07:00
requests = { extras = [ "socks" ] , version = "*" }
2020-12-31 18:48:29 +01:00
unidecode = "*"
2020-03-21 12:45:43 +05:30
urllib3 = "*"
2020-10-12 19:24:17 -07:00
eventlet = "*"
2020-11-09 18:36:31 -08:00
setuptools = "*"
2022-01-17 11:11:35 -08:00
pynacl = "*"
2021-06-01 19:39:34 -07:00
colorama = "*"
2022-01-17 11:11:35 -08:00
gevent-websocket = "*"
2022-09-30 13:20:20 -07:00
stem = "1.8.1"
2023-05-29 14:46:17 +10:00
waitress = "^2.1.2"
werkzeug = ">=2.3.4"
2023-09-27 17:29:35 -07:00
packaging = "^23.1"
gevent = "^23.9.1"
wheel = "^0.41.2"
cffi = "^1.15.1"
cython = "^3.0.2"
2020-03-18 02:47:25 +05:30
[ tool . poetry . dev-dependencies ]
2022-12-15 15:28:24 +11:00
pytest = ">=7.2.0"
2020-10-12 22:40:55 -07:00
[ tool . poetry . scripts ]
onionshare-cli = 'onionshare_cli:main'
2020-03-18 02:47:25 +05:30
[ build-system ]
2023-04-09 20:24:48 +05:30
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"