onionshare/cli/pyproject.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

[tool.poetry]
name = "onionshare_cli"
2021-09-10 15:45:21 -04:00
version = "2.4"
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 03:15:43 -04:00
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.6"
click = "*"
flask = "1.1.4"
flask-socketio = "5.0.1"
psutil = "*"
pysocks = "*"
requests = {extras = ["socks"], version = "*"}
2020-12-31 12:48:29 -05:00
unidecode = "*"
2020-03-21 03:15:43 -04:00
urllib3 = "*"
eventlet = "*"
setuptools = "*"
pynacl = "^1.4.0"
colorama = "*"
cepa = "1.8.2"
[tool.poetry.dev-dependencies]
2020-03-21 03:15:43 -04:00
pytest = "*"
setuptools = "*"
[tool.poetry.scripts]
onionshare-cli = 'onionshare_cli:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"