forked from marcolardera/chatgpt-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 856 Bytes
/
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "llmux"
version = "0.2.2"
description = "LLM inference for power users."
authors = ["Daniel Souza"] # run 'git shortlog -sne' to get a better list
homepage = "https://github.com/danisztls/llmux"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
certifi = "^2022.12.7"
charset-normalizer = "^3.1"
click = "^8.1"
idna = "^3.4"
markdown-it-py = "^2.2"
mdurl = "^0.1"
mypy-extensions = "^1.0"
packaging = "^23.0"
pathspec = "^0.11"
platformdirs = "^3.1"
prompt-toolkit = "^3.0"
Pygments = "^2.14"
PyYAML = "^6.0"
requests = "^2.28"
rich = "^13.4"
tomli = "^2.0"
typing_extensions = "^4.6"
urllib3 = "^1.26"
wcwidth = "^0.2"
[tool.poetry.group.dev.dependencies]
black = "^23.1"
[tool.poetry.scripts]
llmux = "llmux.interfaces.tui:main"