-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 957 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 957 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MetaDetective"
version = "2.0.6"
description = "Metadata extraction and web scraping for OSINT and pentesting."
authors = [{ name = "Franck Ferman", email = "contact@franckferman.fr" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Security",
"Topic :: Utilities"
]
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["metadata", "osint", "pentest", "exiftool", "cyber-security", "intelligence"]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/franckferman/MetaDetective"
[project.scripts]
metadetective = "MetaDetective.MetaDetective:main"