-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (98 loc) · 2.64 KB
/
pyproject.toml
File metadata and controls
108 lines (98 loc) · 2.64 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
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deeprecon"
version = "1.1.0"
authors = [
{name = "Mohammad Rasol Esfandiari", email = "mrasolesfandiari@gmail.com"},
]
description = "A powerful, modular Python library for comprehensive domain and IP analysis"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: System :: Networking",
]
keywords = [
"domain", "ip", "dns", "whois", "ssl", "security",
"networking", "reconnaissance", "analysis", "geolocation"
]
dependencies = [
"requests>=2.31.0",
"dnspython>=2.4.2",
"python-whois>=0.8.0",
"ipwhois>=1.2.0",
"pyOpenSSL>=23.3.0",
"beautifulsoup4>=4.12.2",
"lxml>=4.9.3",
"psutil>=5.9.0",
"netifaces>=0.11.0",
"speedtest-cli>=2.1.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"flake8>=5.0.0",
"black>=22.0.0",
"isort>=5.0.0",
]
[project.urls]
Homepage = "https://github.com/DeepPythonist/DeepRecon"
Repository = "https://github.com/DeepPythonist/DeepRecon"
Documentation = "https://github.com/DeepPythonist/DeepRecon#readme"
Changelog = "https://github.com/DeepPythonist/DeepRecon/blob/main/CHANGELOG.md"
"Bug Reports" = "https://github.com/DeepPythonist/DeepRecon/issues"
[project.scripts]
deeprecon = "deeprecon.cli:main"
[tool.setuptools]
packages = ["deeprecon", "deeprecon.utils", "deeprecon.locales"]
include-package-data = true
[tool.setuptools.package-data]
deeprecon = ["locales/*.json"]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
known_first_party = ["deeprecon"]
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
exclude = [".git", "__pycache__", "build", "dist"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --strict-markers"
testpaths = ["tests"]