-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 783 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 783 Bytes
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
[project]
name = "orbitaldump"
version = "1.0.1"
description = "A simple multi-threaded distributed SSH brute-forcing tool written in Python"
authors = [{ name = "K4YT3X", email = "i@k4yt3x.com" }]
classifiers = [
"Topic :: Security",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"PySocks>=1.7.1",
"loguru>=0.6.0",
"paramiko>=2.10.3",
"requests>=2.27.1",
]
requires-python = ">=3.7"
license = { text = "GPL-3.0-or-later" }
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/k4yt3x/orbitaldump"
[tool.pdm]
version = { from = "orbitaldump/__init__.py" }
[build-system]
requires = ["pdm-pep517>=0.12.0"]
build-backend = "pdm.pep517.api"