-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
110 lines (100 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "h3xrecon"
dynamic = ["version"]
description = 'All in One Bug Bounty Reconnaissance Automation System'
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [
{ name = "h3xit", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"asyncio==3.4.3",
"loguru==0.7.2",
"jsondiff==2.2.1",
"dnspython==2.7.0",
"asyncpg==0.30.0",
"nats-py==2.9.0",
"python-dateutil==2.9.0.post0",
"python-dotenv==1.0.1",
"redis==5.2.0",
"six==1.16.0",
"tabulate==0.9.0",
"docopt==0.6.2",
"pydantic==2.10.3",
"pydantic_core==2.27.1",
"ipwhois==1.3.0",
"requests==2.32.3",
"psutil==6.0.0",
"tldextract==5.1.1",
"aiohttp==3.11.11"
]
[project.urls]
Documentation = "https://github.com/h3xit/h3xrecon#readme"
Issues = "https://github.com/h3xit/h3xrecon/issues"
Source = "https://github.com/h3xit/h3xrecon"
[tool.hatch.version]
path = "src/h3xrecon/__about__.py"
[tool.hatch.envs.types]
extra-dependencies = [
"mypy>=1.0.0",
]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:src/h3xrecon tests}"
[tool.pytest.ini_options]
addopts = [
"--verbose",
"--showlocals",
"--cov=h3xrecon",
"--cov-report=term-missing",
"--cov-report=html",
]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.coverage.run]
source = ["h3xrecon"]
branch = true
parallel = true
omit = [
"src/h3xrecon/__about__.py",
]
[tool.ruff]
lint.select = ["F401", "F541", "F811"]
lint.ignore = ["E501"] # Example: ignore line-length
exclude = ["tests"] # Example: skip checking tests directory
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"no cov",
"if self.debug:",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"pass",
"raise ImportError",
]
[project.scripts]
h3xrecon-data = "h3xrecon.workers.data:run"
h3xrecon-parsing = "h3xrecon.workers.parsing:run"
h3xrecon-recon = "h3xrecon.workers.recon:run"
[tool.coverage.paths]
h3xrecon = ["src/h3xrecon", "*/h3xrecon/src/h3xrecon"]
tests = ["tests", "*/h3xrecon/tests"]