-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 746 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 746 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
from setuptools import find_packages, setup
setup(
name="spectralguard",
version="0.2.0",
description="SpectralGuard: spectral safety monitor for recurrent and hybrid foundation models",
long_description=(
"SpectralGuard provides a stable monitoring API for spectral hazard detection: "
"monitor(prompt, hidden_states) -> (is_safe, spectral_hazard_score)."
),
long_description_content_type="text/plain",
packages=find_packages(include=["spectralguard", "spectralguard.*"]),
install_requires=[
"numpy>=1.26.0",
"scikit-learn>=1.4.0",
"joblib>=1.3.0",
],
extras_require={
"dev": [
"pytest>=8.0.0",
]
},
python_requires=">=3.9",
)