-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 1000 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 1000 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
31
32
33
34
35
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "airlock"
version = "0.1.0"
description = "The airlock between your terminal and the AI — redact secrets & PII before they leak into an LLM."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "KernelSpecter" }]
keywords = ["security", "secrets", "redaction", "pii", "llm", "ai", "privacy", "dlp"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
dependencies = []
[project.optional-dependencies]
clipboard = ["pyperclip>=1.8"]
[project.urls]
Homepage = "https://github.com/KernelSpecter/airlock"
Issues = "https://github.com/KernelSpecter/airlock/issues"
[project.scripts]
airlock = "airlock.cli:main"
[tool.setuptools.packages.find]
include = ["airlock*"]