Files
SolutionEuler/pyproject.toml
Sidney Zhang 6fb29a863c feat(main.py):添加CLI工具支持问题管理功能
📝 docs(README.md):更新项目说明并添加main.py使用指南
⬆️ chore(pyproject.toml):添加typer依赖以支持CLI功能
 test(solutions):添加0036号问题的解决方案文件
2026-01-06 14:04:31 +08:00

13 lines
274 B
TOML

[project]
name = "projecteuler"
version = "0.1.0"
description = "euler 项目的解题。主要为python。"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mplusa>=0.0.3",
"numpy>=2.3.5",
"sympy>=1.14.0",
"typer-slim[standard]>=0.21.0",
]