-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.03 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
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv"
]
[tool.poetry]
name = "simple-xss"
version = "0.0.3"
description = "Simple-XSS is a multi-platform cross-site scripting (XSS) vulnerability exploitation tool for pentesting."
authors = ["CrazyProger1 <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "simplexss" },
]
[tool.poetry.dependencies]
python = "^3.12"
pydantic = "^2.6.4"
translatable-enums = "^0.0.3"
pytest = "^8.1.1"
toml = "^0.10.2"
pyngrok = "^7.1.5"
flet = "^0.21.2"
pyperclip = "^1.8.2"
websockets = "^12.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.3"
mypy = "^1.9.0"
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"