-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
34 lines (31 loc) · 1006 Bytes
/
pyproject.toml
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tor2tor"
version = "0.15.0"
description = "Capture screenshots of onion services on an onion service."
authors = ["Richard Mwewa <rly0nheart@duck.com>"]
readme = "README.md"
license = "MIT License"
homepage = "https://hub.docker.com/r/rly0nheart/tor2tor"
repository = "https://github.com/rly0nheart/tor2tor"
documentation = "https://github.com/rly0nheart/tor2tor/blob/latest/README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3"
]
[tool.poetry.dependencies]
python = "^3.10"
rich = "*"
requests = "*"
rich-argparse = "*"
selenium = "*"
BeautifulSoup4 = "*"
[tool.poetry.scripts]
t2t = "tor2tor.main:execute_tor2tor"
tor2tor = "tor2tor.main:execute_tor2tor"