Metadata-Version: 2.4
Name: xlab-security
Version: 0.1.11
Summary: A Python package for AI security and helper functions
Home-page: https://github.com/yourusername/xlab-security
Author: XLab Team
Author-email: XLab Team <contact@xlab.ai>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/xlab-security
Project-URL: Repository, https://github.com/yourusername/xlab-security.git
Project-URL: Issues, https://github.com/yourusername/xlab-security/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: torch>=1.9.0
Requires-Dist: torchvision>=0.10.0
Requires-Dist: numpy>=1.21.0
Requires-Dist: matplotlib>=3.3.0
Requires-Dist: pytest>=6.0
Requires-Dist: openai>=1.0.0
Requires-Dist: Pillow>=8.0.0
Requires-Dist: hf_xet
Requires-Dist: huggingface_hub>=0.15.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: flake8>=3.9; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# XLab Security Python Package

A Python package for AI security and helper functions.

## Installation

```bash
pip install xlab-security
```

## Usage

```python
import xlab

# Check the version
print(f"XLab Version: {xlab.__version__}")

# Use the hello_world function
xlab.hello_world()
```

## Features

- `hello_world()`: A simple function to verify the package is working correctly

## Development

To install for development:

```bash
pip install -e .
```

To run tests:

```bash
pytest tests/
```

## License

MIT License
