onionshare/desktop/pyproject.toml
dependabot[bot] fc055f2d34
Bump pyside6 from 6.5.0 to 6.5.1.1 in /desktop
Bumps [pyside6](https://www.pyside.org) from 6.5.0 to 6.5.1.1.

---
updated-dependencies:
- dependency-name: pyside6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-06-07 16:21:53 +00:00

32 lines
989 B
TOML

[tool.poetry]
name = "onionshare"
version = "2.6.1"
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+"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
onionshare_cli = {path = "../cli", develop = true}
PySide6 = "6.5.1.1"
qrcode = "*"
werkzeug = "*"
python-gnupg = "*"
[tool.poetry.dev-dependencies]
click = "*"
black = "*"
pytest = "*"
pytest-faulthandler = "*"
pytest-qt = "*"
cx_freeze = "*"
importlib-metadata = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
onionshare = 'onionshare:main'
onionshare-cli = 'onionshare_cli:main'