-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
37 lines (32 loc) · 980 Bytes
/
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
include = [
{path = "oxdork/data/data.json"}
]
name = "oxdork"
version = "3.2.0"
description = "Google dorking tool."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT License"
homepage = "https://github.com/rly0nheart/oxdork"
documentation = "https://github.com/rly0nheart/oxdork/wiki/"
repository = "https://github.com/rly0nheart/oxdork.git"
keywords = ["python", "osint", "google-dorking", "osint", "inurl", "intext", "intitle"]
authors = ["Richard Mwewa <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
""
]
[tool.poetry.dependencies]
rich = "*"
google = "*"
[tool.poetry.scripts]
oxdork = "oxdork.main:run"