team/dev/: vista-3.0.1 metadata and description
Add your description here
| description_content_type | text/markdown |
| metadata_version | 2.3 |
| requires_dist |
|
| requires_python | >=3.11 |
Because this project isn't in the mirror_whitelist,
no releases from root/pypi are included.
| File | Tox results | History |
|---|---|---|
vista-3.0.1-py3-none-any.whl
|
|
vista
前瞻视野/长期推演;侧重趋势预测;因子挖掘流程
UV 开发环境配置
# 在项目根目录创建 pyproject.toml
uv init
# 指定 Python 版本
uv python install 3.11
uv python pin 3.11
# 安装所有依赖
uv sync
# 更新依赖
uv update
# 添加生产依赖
uv add pandas numpy matplotlib
# 添加开发依赖
uv add --dev pytest black isort mypy
# 检查依赖
uv tree
# 激活虚拟环境
uv venv
source .venv/bin/activate # Linux/Mac
.venv\Scripts\activate # Windows
# 在虚拟环境中运行命令
uv run python script.py
uv run pytest