Metadata-Version: 2.4
Name: testzltquant
Version: 0.1.0
Summary: ZLT Quantitative Trading Framework
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/zltjoinquant
Project-URL: Documentation, https://github.com/yourusername/zltjoinquant/docs
Project-URL: Repository, https://github.com/yourusername/zltjoinquant
Project-URL: Bug Tracker, https://github.com/yourusername/zltjoinquant/issues
Keywords: quantitative,trading,finance,backtesting
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=1.3.0
Requires-Dist: numpy>=1.20.0
Requires-Dist: sqlalchemy>=1.4.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: isort>=5.0.0; extra == "dev"
Requires-Dist: flake8>=4.0.0; extra == "dev"
Dynamic: license-file

## 包构建与安装

### 前置要求
- Python 3.10 或更高版本
- build 和 twine (用于发布)

### 构建包

```bash
# 安装构建工具
pip install build twine

# 构建分发包
python -m build
```

构建完成后，在 `dist/` 目录下会生成：
- `testzltquant-0.1.0.tar.gz` - 源代码分发包
- `testzltquant-0.1.0-py3-none-any.whl` - wheel 包

### 本地安装

```bash
# 开发模式安装（可编辑）
pip install -e .

# 或从构建的 wheel 文件安装
pip install dist/testzltquant-0.1.0-py3-none-any.whl
```

### 发布到 PyPI

```bash
# 上传到 PyPI (需要配置 pypi token)
python -m twine upload dist/*

# 或上传到 TestPyPI 测试
python -m twine upload --repository testpypi dist/*
```

### 注意事项
- 包仅包含 `zltquant/` 目录，不包含其他子模块如 `zltlib`、`zltFactor` 等
```
