Metadata-Version: 2.4
Name: hanyu-lang
Version: 0.1.2
Summary: 汉语编程语言实现
Home-page: https://github.com/yourusername/hanyu-lang
Author: 你的名字/团队名
Author-email: your.email@example.com
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Compilers
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pygments>=2.7
Requires-Dist: watchdog>=2.0
Requires-Dist: tkinterweb>=3.11
Provides-Extra: secure
Requires-Dist: pyjwt>=2.0; extra == "secure"
Requires-Dist: cryptography>=3.4; extra == "secure"
Provides-Extra: full
Requires-Dist: numpy>=1.21; extra == "full"
Requires-Dist: pandas>=1.3; extra == "full"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 汉语编程语言 (Hanyu-Lang)

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

首个以汉语为原生语法的现代化编程语言，支持全中文代码开发与跨平台部署。

## 核心特性

- 全中文关键字（如果、循环、函数定义等）
- 内置REPL交互式解释器
- 支持生成中间代码与AST可视化
- 跨平台GUI开发环境
- 可扩展标准库（数学运算、文件处理等）

## 快速开始

### 安装指南

```powershell
# 开发模式安装（推荐）
pip install -e .

# 生产环境安装
pip install hanyu-lang

# 安装完整功能版
pip install "hanyu-lang[full]"
