-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.69 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "leakrecon"
version = "2.0.0"
description = "High-Performance Asynchronous OSINT & Dark Web Intelligence Framework"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [{name = "Egnake", email = "egnake@proton.me"}]
keywords = ["osint", "darkweb", "tor", "recon", "intelligence", "leak", "security", "cybersecurity"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
]
dependencies = [
"aiohttp>=3.9.5",
"aiohttp_socks>=0.8.4",
"beautifulsoup4>=4.12.3",
"lxml>=5.2.2",
"rich>=13.7.1",
"pydantic>=2.7.4",
"pydantic-settings>=2.3.4",
"pdfkit>=1.0.0",
"stem>=1.8.2",
]
[project.optional-dependencies]
dev = ["pytest>=8.2.2", "pytest-asyncio>=0.23.7"]
[project.urls]
Homepage = "https://github.com/egnake/LeakRecon"
"Bug Tracker" = "https://github.com/egnake/LeakRecon/issues"
"Source Code" = "https://github.com/egnake/LeakRecon"
[project.scripts]
leakrecon = "main:cli_entry"
[tool.setuptools]
py-modules = ["main", "config"]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*", "img", "reports"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]