-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.46 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.46 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aiitg"
version = "0.1.0"
description = "AI Input Trust Gateway — hidden content auditor for documents fed to LLMs/Agents"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "SS", email = "dalisikm@gmail.com" }]
keywords = ["ai-security", "prompt-injection", "llm", "agent", "hidden-text", "zero-width"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"python-docx>=1.1",
"openpyxl>=3.1",
"pypdf>=5",
"beautifulsoup4>=4.12",
"lxml>=5",
"oletools>=0.60",
"typer>=0.12",
"rich>=13",
"mcp<2",
"python-pptx>=1.0",
"xlrd>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-cov",
"reportlab",
"xlwt",
"ruff",
"mypy",
"anyio>=4",
"build",
]
[project.scripts]
aiitg = "aiitg.cli.main:main"
aiitg-mcp = "aiitg.mcp_server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/aiitg"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true