-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
76 lines (71 loc) · 2.48 KB
/
Copy pathsetup.py
File metadata and controls
76 lines (71 loc) · 2.48 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
67
68
69
70
71
72
73
74
75
76
"""
LeakRecon – High-Performance Asynchronous OSINT & Dark Web Intelligence Framework.
Packaging configuration for pip-installable distribution.
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read long description from README
this_directory = Path(__file__).parent
long_description = ""
readme_path = this_directory / "README.md"
if readme_path.exists():
long_description = readme_path.read_text(encoding="utf-8")
# Read requirements
requirements = []
req_path = this_directory / "requirements.txt"
if req_path.exists():
requirements = [
line.strip()
for line in req_path.read_text(encoding="utf-8").splitlines()
if line.strip() and not line.startswith("#")
]
setup(
name="leakrecon",
version="2.0.0",
author="Egnake",
author_email="egnake@proton.me",
description="High-Performance Asynchronous OSINT & Dark Web Intelligence Framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/egnake/LeakRecon",
project_urls={
"Bug Tracker": "https://github.com/egnake/LeakRecon/issues",
"Source Code": "https://github.com/egnake/LeakRecon",
"Documentation": "https://github.com/egnake/LeakRecon#readme",
},
license="MIT",
packages=find_packages(exclude=["tests", "tests.*", "img", "reports"]),
py_modules=["main", "config"],
include_package_data=True,
python_requires=">=3.10",
install_requires=requirements,
extras_require={
"dev": [
"pytest>=8.2.2",
"pytest-asyncio>=0.23.7",
],
},
entry_points={
"console_scripts": [
"leakrecon=main:cli_entry",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Networking",
],
keywords="osint darkweb tor recon intelligence leak security cybersecurity",
)