Metadata-Version: 2.4
Name: malwareDetector
Version: 0.4.0
Summary: DEPRECATED - This package has been renamed to islab-malware-detector
Project-URL: Homepage, https://github.com/bolin8017/islab-malware-detector
Project-URL: Documentation, https://github.com/bolin8017/islab-malware-detector/wiki
Project-URL: Repository, https://github.com/bolin8017/islab-malware-detector.git
Project-URL: NewPackage, https://pypi.org/project/islab-malware-detector/
Author-email: PO-LIN LAI <bolin8017@gmail.com>
License: MIT
Keywords: deprecated,detector,framework,malware,security
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.12
Requires-Dist: islab-malware-detector>=0.3.1
Description-Content-Type: text/markdown

# ⚠️ DEPRECATED: malwareDetector

**This package has been renamed and is no longer maintained.**

## 🔄 Migration Required

Please uninstall this package and install the new one:

```bash
pip uninstall malwareDetector
pip install islab-malware-detector
```

Or with [uv](https://github.com/astral-sh/uv):

```bash
uv remove malwareDetector
uv add islab-malware-detector
```

## 📦 New Package Information

- **New PyPI Name**: `islab-malware-detector`
- **PyPI**: https://pypi.org/project/islab-malware-detector/
- **GitHub**: https://github.com/bolin8017/islab-malware-detector
- **Documentation**: https://github.com/bolin8017/islab-malware-detector/wiki

## 🔧 Code Changes Required

**Good news**: The import statements remain the same! You only need to update your installation.

```python
# Import statements stay the same
from malware_detector import BaseDetector, BaseDetectorConfig

class MyDetector(BaseDetector):
    def train(self):
        ...

    def evaluate(self):
        ...

    def predict(self):
        ...
```

## ⏰ Timeline

- **v0.3.1 and earlier**: Published under `malwareDetector` (deprecated)
- **v0.3.1+**: Published under `islab-malware-detector` (active)
- **v0.4.0**: This deprecation notice (automatically installs `islab-malware-detector`)

## 📋 Why the Rename?

The package was renamed to:
1. **Better clarity**: The new name clearly identifies the package's origin (ISLab)
2. **Improved discoverability**: Follows Python package naming conventions (hyphenated)
3. **Professional branding**: Aligns with institutional identity

## 🆘 Need Help?

If you encounter any issues during migration:

- **Open an issue**: https://github.com/bolin8017/islab-malware-detector/issues
- **Check the wiki**: https://github.com/bolin8017/islab-malware-detector/wiki
- **Migration guide**: https://github.com/bolin8017/islab-malware-detector/wiki/Migration-Guide

## 📜 License

MIT License - see the [new repository](https://github.com/bolin8017/islab-malware-detector) for details.
