-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
31 lines (27 loc) · 1.13 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "thedevilseye"
version = "1.7.0"
description = "Get hidden Tor services and descriptions that match with the user's query."
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["osint", "tor", "darknet", "deepweb", "darkweb", "darkweb-data", "osint-python", "osint-tool", "deepweb-links"]
authors = [{ name = "Richard Mwewa", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English"
]
dependencies = ["beautifulsoup4", "pandas", "rich", "requests"]
[project.urls]
homepage = "https://pypi.org/project/thedevilseye"
documentation = "https://github.com/rly0nheart/thedevilseye/blob/master/README.md"
repository = "https://github.com/rly0nheart/thedevilseye.git"
[project.scripts]
thedevilseye = "thedevilseye.cli:start"