-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.54 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
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[project]
name = "medor"
dynamic = [
"version"
]
description = "medor is an OSINT tool that enables you to discover a WordPress website IP behind a WAF or behind Onion Services."
authors = [
{ name = "balestek"},
]
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["osint", "osint-tools", "osint-python", "open-source-intelligence", "information-gathering", "investigation", "osint-tool", "wordpress", "xmlrpc", "xml-rpc", "wordpress-osint", "wp-osint", "pingback", "darknet", "onion", "onion-service", "python", "pypi", "pipenv"]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English",
"Environment :: Console"
]
requires-python = ">=3.8"
dependencies = [
"brotlipy",
"stem",
"httpx[socks]",
"httpx",
"halo",
"colorama",
"docopt",
"lxml",
"beautifulsoup4",
"validators",
"python-dotenv"
]
[tool.hatch.version]
path = "medor/__about__.py"
[project.scripts]
medor = "medor.medor:main"
[project.urls]
"Homepage" = "https://github.com/balestek/medor"
"Bug Tracker" = "https://github.com/balestek/medor/issues"