team/dev/: vista-3.0.1 metadata and description

Simple index

Add your description here

description_content_type text/markdown
requires_dist
  • agno>=2.1.3
  • czsc>=0.9.68
  • tomlkit>=0.13.0
  • clickhouse-connect>=0.6.0
  • loguru>=0.7.0
  • pydantic>=2.6.0
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
Size
27 KB
Type
Python Wheel
Python
3
  • Uploaded to team/dev by team 2025-11-05 08:23:46

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