-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 889 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[project]
name = "sai-chat"
version = "0.1.5"
description = "Simple AI interface to chat with your LLM models from the terminal"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.1",
"inquirer>=3.4.1",
"rich>=14.3.2",
"tomli-w>=1.2.0",
]
[project.scripts]
sai = "app.__main__:main"
[project.urls]
Homepage = "https://github.com/luisgdev/sai"
Repository = "https://github.com/luisgdev/sai"
Issues = "https://github.com/luisgdev/sai/issues"
Documentation = "https://github.com/luisgdev/sai#readme"
[build-system]
requires = ["uv_build>=0.10.4,<0.11.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "app"
module-root = ""
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pylint>=4.0.4",
]
[tool.mypy]
python_version = "3.12"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true