Metadata-Version: 2.4
Name: isage-privacy
Version: 0.1.0.0
Summary: SAGE Privacy Framework - Differential privacy, federated learning, machine unlearning, PII detection
Author-email: IntelliStream Team <shuhao_zhang@hust.edu.cn>
License-Expression: MIT
Project-URL: Homepage, https://github.com/intellistream/sage-privacy
Project-URL: Repository, https://github.com/intellistream/sage-privacy
Keywords: privacy,differential-privacy,federated-learning,machine-unlearning,PII,LLM,AI
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.0.0
Requires-Dist: typing-extensions>=4.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: ruff>=0.4.0; extra == "dev"

# sage-privacy

Privacy protection, machine unlearning, differential privacy

**PyPI Package**: `isage-privacy`

## Installation

```bash
pip install isage-privacy
```

## Development

```bash
git clone https://github.com/intellistream/sage-privacy.git
cd sage-privacy
pip install -e .[dev]
```

## Usage

```python
# Import from SAGE interface layer
from sage.libs.privacy.interface import create, register

# Or import directly
import isage_privacy
```

## License

Apache License 2.0
