-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·30 lines (26 loc) · 916 Bytes
/
Copy pathpyproject.toml
File metadata and controls
executable file
·30 lines (26 loc) · 916 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
29
30
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phish-forge"
version = "0.1.0"
description = "Drop a .eml in, get a phishing verdict out. Header forensics + URL analysis + body heuristics."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
authors = [{ name = "@forgehk", email = "info@darkforgeai.com" }]
keywords = ["security", "email", "phishing", "soc", "blue-team", "incident-response"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Security",
]
dependencies = []
[project.optional-dependencies]
api = ["fastapi>=0.110", "uvicorn>=0.30", "python-multipart>=0.0.9"]
dev = ["pytest>=7"]
[project.scripts]
phish-forge = "phish_forge.cli:main"
[tool.setuptools.packages.find]
include = ["phish_forge*"]