添加.python-version文件指定Python版本 将依赖从requirements.txt迁移至pyproject.toml 添加python-dotenv依赖用于环境变量管理 新增.env-example作为环境变量配置模板 生成uv.lock锁定依赖版本 添加example.py作为功能示例
37 lines
710 B
TOML
37 lines
710 B
TOML
# This file is automatically generated by uv.
|
|
# It is not intended to be manually edited.
|
|
version = 1
|
|
|
|
[[package]]
|
|
name = "streamlit"
|
|
version = "1.30.0"
|
|
source = "pypi"
|
|
dependencies = [
|
|
"altair>=4.0.0",
|
|
"blinker>=1.0.0",
|
|
"cachetools>=4.0.0",
|
|
"click>=7.0",
|
|
"decorator>=4.0.0",
|
|
"gitpython!=3.1.19",
|
|
"numpy",
|
|
"packaging>=14.1",
|
|
"pandas>=0.25.0",
|
|
"pillow>=6.2.0",
|
|
"protobuf<5,>=3.12",
|
|
"pyarrow",
|
|
"python-dateutil",
|
|
"pytz",
|
|
"requests>=2.4.0",
|
|
"rich>=10.11.0",
|
|
"semver",
|
|
"toml",
|
|
"typing-extensions>=4.0.0",
|
|
"tzlocal>=1.1",
|
|
"validators>=0.20.0",
|
|
"watchdog",
|
|
]
|
|
|
|
[[package]]
|
|
name = "python-dotenv"
|
|
version = "1.0.0"
|
|
source = "pypi" |