27 lines
547 B
TOML
27 lines
547 B
TOML
[project]
|
|
name = "email-dlp"
|
|
version = "0.1.0"
|
|
description = "Email DLP proof-of-concept using local LLM"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"markitdown[pdf]>=0.1.0",
|
|
"py7zr>=0.21.0",
|
|
"openai>=1.30.0",
|
|
"pydantic>=2.0",
|
|
"beautifulsoup4>=4.12",
|
|
"rich>=13.0",
|
|
"typer>=0.12",
|
|
"python-dotenv>=1.0.0",
|
|
"pymupdf>=1.27.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
email-dlp = "email_dlp.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["email_dlp"]
|