2020-03-18 02:47:25 +05:30
[ tool . poetry ]
2020-10-12 22:40:55 -07:00
name = "onionshare_cli"
2022-01-17 09:51:04 -08:00
version = "2.5"
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 ]
2020-11-03 21:48:22 -08:00
python = "^3.6"
2020-11-08 13:34:19 -08:00
click = "*"
2022-03-06 11:35:01 -08:00
flask = "2.0.3"
flask-socketio = "5.1.1"
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 = "*"
2021-11-14 16:24:36 -08:00
cepa = "1.8.3"
2020-03-18 02:47:25 +05:30
[ tool . poetry . dev-dependencies ]
2020-03-21 12:45:43 +05:30
pytest = "*"
2020-06-30 11:26:44 -07:00
setuptools = "*"
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 ]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"