-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
54 lines (41 loc) · 1014 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "ten"
version = "0.1.6"
description = "A (small) web exploit framework"
authors = ["Charles \"cfreal\" Fol <folcharles@gmail.com>"]
readme = "README.md"
packages = [
{ include = "ten" },
{ include = "tenlib" }
]
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0"
beautifulsoup4 = "^4.12.2"
colorama = "^0.4.6"
rich = "^13.3.4"
requests = "^2.28.2"
requests-toolbelt = [
{version = ">=1", python = ">=3.11"},
{version = ">=0.1.10", python = ">=3"}
]
lxml = ">=4.9.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
pdoc3 = "^0.10.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
[tool.poetry.group.extras.dependencies]
rich-argparse = "^1.1.1"
[tool.poetry.scripts]
tf = "tenlib.cli:transform"
ten = "tenlib.cli:ten"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"