-
Notifications
You must be signed in to change notification settings - Fork 116
/
pyproject.toml
53 lines (46 loc) · 1.12 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "elia_chat"
version = "1.10.0"
description = "A powerful terminal user interface for interacting with large language models."
authors = [
{ name = "Darren Burns", email = "[email protected]" }
]
dependencies = [
"textual[syntax]==0.79.1",
"sqlmodel>=0.0.9",
"humanize>=4.6.0",
"click>=8.1.6",
"xdg-base-dirs>=6.0.1",
"aiosqlite>=0.20.0",
"click-default-group>=1.2.4",
"greenlet>=3.0.3",
"google-generativeai>=0.5.3",
"pyperclip>=1.8.2",
"litellm>=1.37.19",
"pydantic>=2.9.0",
]
readme = "README.md"
requires-python = ">= 3.11"
[project.scripts]
elia = "elia_chat.__main__:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
dev-dependencies = [
"black>=23.3.0",
"mypy>=1.3.0",
"types-peewee>=3.16.0.0",
"pre-commit>=3.3.2",
"textual-dev>=1.0.1",
"pyinstrument>=4.6.2",
]
[tool.uv.sources]
textual = { path = "../textual", editable = true }
[tool.mypy]
ignore_missing_imports = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["elia_chat"]