-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (58 loc) · 1.65 KB
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
[tool.poetry]
name = "devha"
version = "2.0.0"
description = "devha Hacking Studio — all-in-one ethical hacking and developer toolkit"
authors = ["devha contributors <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/waldex451/devha"
repository = "https://github.com/waldex451/devha"
keywords = ["hacking", "security", "cli", "ethical", "pentesting", "developer"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Utilities",
]
packages = [{include = "devha"}]
[tool.poetry.scripts]
devha = "devha.cli:app"
[tool.poetry.dependencies]
python = "^3.10"
typer = {extras = ["all"], version = "^0.12.0"}
rich = "^13.7.0"
httpx = "^0.27.0"
dnspython = "^2.6.0"
beautifulsoup4 = "^4.12.0"
scapy = "^2.5.0"
pyfiglet = "^1.0.2"
textual = "^0.61.0"
click = ">=8.0,<8.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.23.0"
pytest-cov = "^5.0.0"
ruff = "^0.4.0"
black = "^24.0.0"
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "--cov=devha --cov-report=term-missing"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"