student-score-prediction/pyproject.toml
柘黎思 d2098227fb
All checks were successful
autograde-assignment-05-final-project / check-trigger (push) Successful in 12s
autograde-assignment-05-final-project / grade (push) Has been skipped
feat: 上传课程设计完整代码
2026-01-12 11:06:20 +08:00

57 lines
1.0 KiB
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[project]
name = "ml-course-design"
version = "0.1.0"
description = "机器学习 × LLM × Agent 课程设计模板"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"joblib>=1.5.3",
"pandera>=0.28.1",
"polars>=1.37.0",
"pydantic-ai>=1.41.0",
"python-dotenv>=1.2.1",
"scikit-learn>=1.8.0",
"streamlit>=1.52.2",
]
[[tool.uv.index]]
url = "https://mirrors.aliyun.com/pypi/simple/"
default = true
dependencies = [
"pydantic>=2.10",
"pandera>=0.21",
"pydantic-ai>=0.7",
"polars>=1.0",
"pandas>=2.2",
"scikit-learn>=1.5",
"lightgbm>=4.5",
"seaborn>=0.13",
"joblib>=1.4",
"python-dotenv>=1.0",
"streamlit>=1.40",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=1.3",
"ruff>=0.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]