28 lines
639 B
TOML
28 lines
639 B
TOML
[project]
|
|
name = "heurams"
|
|
version = "0.5.0"
|
|
description = "Heuristic Auxiliary Memory Scheduler"
|
|
readme = "README.md"
|
|
authors = [{ name = "pluvium27", email = "pluvium27@outlook.com" }]
|
|
requires-python = "==3.14.*"
|
|
dependencies = [
|
|
"edge-tts>=7.2.8",
|
|
"jieba>=0.42.1",
|
|
"openai>=2.32.0",
|
|
"playsound==1.2.2",
|
|
"psutil>=7.2.2",
|
|
"pygobject>=3.56.2",
|
|
"tabulate>=0.10.0",
|
|
"textual>=8.2.3",
|
|
"toml>=0.10.2",
|
|
"transitions>=0.9.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
heurams = "heurams.__main__:main"
|
|
tui = "heurams.interface.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.22,<0.10.0"]
|
|
build-backend = "uv_build"
|