-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.57 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
[project]
name = "resksecure"
version = "0.1.0"
description = "Bitmask-based LLM security firewall with policy-driven logits filtering using GPU-accelerated Aho-Corasick pattern matching"
authors = [{name = "RESK Security"}]
readme = "README.md"
requires-python = ">=3.13"
license = {text = "RESK Software License"}
keywords = [
"llm", "safety", "security", "bitmask", "logits",
"transformers", "firewall", "filtering", "aho-corasick",
"gpu", "policy", "permissions", "dlp",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"resklogits>=0.1.0",
"pyyaml>=6.0",
"torch>=2.0.0",
"transformers>=4.35.0",
]
[project.urls]
Homepage = "https://github.com/Resk-Security/reskSecure"
Repository = "https://github.com/Resk-Security/reskSecure"
Documentation = "https://github.com/Resk-Security/reskSecure"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/resksecure"]
include = ["/src/resksecure/**/*.py", "/src/resksecure/**/*.yaml"]
[tool.pytest.ini_options]
testpaths = ["tests"]