Metadata-Version: 2.4
Name: mutgui
Version: 0.1.0
Summary: A Python/C++ GUI framework based on mutobj
Author: tiwb
License-Expression: MIT
Project-URL: Homepage, https://github.com/tiwb/mutgui
Project-URL: Repository, https://github.com/tiwb/mutgui
Keywords: gui,c++,python,mutobj
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: C++
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mutobj~=0.2.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Dynamic: license-file

# mutgui

[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**mutgui** - 基于 mutobj 的 Python/C++ GUI 框架。

> **Note:** This package is in early development. Stay tuned for updates.

## 安装

```bash
pip install mutgui
```

## 项目结构

```
mutgui/
├── src/mutgui/       # Python 包
├── csrc/             # C++ 源码
├── tests/            # 测试
└── docs/             # 文档
```

## 开发

```bash
pip install -e ".[dev]"
pytest
```

## 发布

Tag 触发自动发布（PyPI Trusted Publishers，无需 token）：

```bash
git tag v0.1.x
git push origin v0.1.x
```

源码版本保持 `x.y.999`，CI 从 tag 提取正式版本号替换后构建发布。

## License

MIT License - 详见 [LICENSE](LICENSE)
