-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.84 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "pyslowloris"
version = "2.0.3"
description = "Asynchronous Python implementation of SlowLoris DoS attack"
authors = ["Maxim Krivich <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/maxkrivich/SlowLoris"
repository = "https://github.com/maxkrivich/SlowLoris"
packages = [
{ include = "pyslowloris", from="." }
]
keywords = [
"SlowLoris", "dos", "slowloris", "apache", "dos-attacks", "denial-of-service", "http",
"exploit", "dos-tool", "hacker-scripts", "hacking-tool", "hacking", "vulnerability", "slow-requests",
"cybersecurity", "cyber-security", "information-security", "security"
]
classifiers = [
"Natural Language :: English",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.9"
fake-useragent = ">=0.1.11,<2.1.0"
trio = ">=0.16,<0.29"
jk-triologging = "^0.2019.10"
sh = ">=1.14,<3.0"
[tool.poetry.dev-dependencies]
pytest = "^8.3.4"
flake8 = "^7.1.1"
pytest-trio = "^0.8.0"
isort = "^6.0.0"
[tool.poetry.group.dev.dependencies]
pytest-github-actions-annotate-failures = ">=0.2,<0.4"
[tool.pytest.ini_options]
minversion = "6.0.1"
addopts = "-ra -q -v"
trio_mode = "true"
testpaths = [
"tests"
]
[tool.isort]
atomic = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/maxkrivich/SlowLoris/issues"
[tool.poetry.scripts]
slowloris = "pyslowloris.__main__:main"
[build-system]
requires = ["poetry>=1.0"]