2020-03-17 18:17:25 -03:00
[ tool . poetry ]
2020-10-13 02:40:55 -03:00
name = "onionshare_cli"
2021-09-10 16:45:21 -03:00
version = "2.4"
2020-03-17 18:17:25 -03:00
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>" ]
2020-03-17 18:17:25 -03:00
license = "GPLv3+"
2020-10-13 02:40:55 -03: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-17 18:17:25 -03:00
[ tool . poetry . dependencies ]
2020-11-04 02:48:22 -03:00
python = "^3.6"
2020-11-08 18:34:19 -03:00
click = "*"
2021-06-01 22:39:34 -04:00
flask = "1.1.4"
2021-05-06 15:53:11 -04:00
flask-socketio = "5.0.1"
2020-11-17 22:45:04 -03:00
psutil = "*"
2020-11-08 18:34:19 -03:00
pysocks = "*"
2021-06-01 22:39:34 -04:00
requests = { extras = [ "socks" ] , version = "*" }
2020-12-31 14:48:29 -03:00
unidecode = "*"
2020-03-21 04:15:43 -03:00
urllib3 = "*"
2020-10-12 23:24:17 -03:00
eventlet = "*"
2020-11-09 23:36:31 -03:00
setuptools = "*"
2021-05-03 20:02:02 -04:00
pynacl = "^1.4.0"
2021-06-01 22:39:34 -04:00
colorama = "*"
2021-08-27 01:52:29 -04:00
stem = { git = "https://github.com/onionshare/stem.git" , rev = "1.8.1" }
2020-03-17 18:17:25 -03:00
[ tool . poetry . dev-dependencies ]
2020-03-21 04:15:43 -03:00
pytest = "*"
2020-06-30 14:26:44 -04:00
setuptools = "*"
2020-10-13 02:40:55 -03:00
[ tool . poetry . scripts ]
onionshare-cli = 'onionshare_cli:main'
2020-03-17 18:17:25 -03:00
[ build-system ]
requires = [ "poetry>=0.12" ]
build-backend = "poetry.masonry.api"