Metadata-Version: 2.4
Name: pywslc
Version: 0.1.0
Summary: Python wrapper for WSL Containers — native Linux containers on Windows
Project-URL: Homepage, https://github.com/TimurStepanov/pywslc
Project-URL: Repository, https://github.com/TimurStepanov/pywslc
Project-URL: Issues, https://github.com/TimurStepanov/pywslc/issues
Author: Timur Stepanov
License-Expression: MIT
License-File: LICENSE
Keywords: containers,docker-alternative,linux,windows,wsl
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Operating System
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# wslc

> Python wrapper for [WSL Containers](https://devblogs.microsoft.com/commandline/wsl-container-is-now-available-for-public-preview/) — native Linux containers on Windows without Docker Desktop.

## ⚠️ Under active development

WSLC was announced at Microsoft Build 2026. This library wraps the `wslc` CLI / API to provide a Pythonic interface for managing WSL containers.

## Installation

```bash
pip install wslc
```

## Quick Start

```python
import wslc

# Coming soon
```

## Roadmap

- [ ] Container lifecycle (create, start, stop, remove)
- [ ] Resource limits (CPU, memory)
- [ ] Image management
- [ ] Port mapping
- [ ] Async API

## Requirements

- Windows with WSL 2.9.3+
- Python 3.10+

## License

MIT
