File: pyproject.toml

package info (click to toggle)
onionshare 2.6.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,672 kB
  • sloc: python: 14,487; javascript: 10,725; sh: 137; makefile: 56; xml: 29
file content (51 lines) | stat: -rw-r--r-- 1,546 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "onionshare_cli"
version = "2.6.3"
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+"
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.10,<3.13"
click = "*"
flask = "3.*"
flask-compress = "^1.13"
flask-socketio = "5.3.4"
psutil = "*"
pysocks = "*"
requests = {extras = ["socks"], version = "*"}
unidecode = "*"
urllib3 = "^2.2.2"
eventlet = "*"
setuptools = ">=70.0.0"
pynacl = "*"
colorama = "*"
gevent-websocket = "*"
stem = "1.8.1"
waitress = "^3.0.1"
werkzeug = "3.0.6"
packaging = ">=24"
gevent = "^23.9.1"
wheel = "^0.41.2"
cffi = "^1.15.1"
qrcode = "^7.4.2"

[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0"

[tool.poetry.scripts]
onionshare-cli = 'onionshare_cli:main'

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"