Initial commit
This commit is contained in:
26
pyproject.toml
Normal file
26
pyproject.toml
Normal file
@ -0,0 +1,26 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user