-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
143 lines (133 loc) · 3.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[project]
name = "parllama"
dynamic = [
"version",
]
description = "Terminal UI for Ollama and other LLM providers"
readme = "README.md"
url = "https://github.com/paulrobello/parllama"
authors = [
{ name = "Paul Robello", email = "[email protected]" },
]
maintainers = [
{ name = "Paul Robello", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Topic :: Terminals",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
keywords = [
"ollama",
"llamacpp",
"openai",
"anthropic",
"groq",
"xai",
"openrouter",
"vision",
"llm",
"ai",
"terminal",
"tui",
]
requires-python = ">=3.11"
dependencies = [
"argparse>=1.4.0",
"asyncio>=3.4.3",
"beautifulsoup4>=4.13.3",
"build>=1.2.2.post1",
"cryptography>=44.0.2",
"docker>=7.1.0",
"httpx>=0.28.1",
"humanize>=4.11.0",
"langchain>=0.3.21",
"ollama>=0.4.7",
"pydantic>=2.10.6",
"pydantic-core>=2.27.2",
"python-dotenv>=1.1.0",
"pytz>=2025.2",
"requests>=2.32.3",
"rich>=13.9.4",
"semver>=3.0.4",
"textual>=2.1.2",
"textual-fspicker>=0.4.1",
"urllib3>=2.3.0",
"rich-pixels>=3.0.1",
"orjson>=3.10.16",
"par-ai-core>=0.1.24",
"clipman>=3.3.1",
"google-generativeai>=0.8.4",
"xdg-base-dirs>=6.0.2",
]
packages = [
"src/parllama",
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/paulrobello/parllama"
Documentation = "https://github.com/paulrobello/parllama/blob/main/README.md"
Source = "https://github.com/paulrobello/parllama"
Issues = "https://github.com/paulrobello/parllama/issues"
Discussions = "https://github.com/paulrobello/parllama/discussions"
Wiki = "https://github.com/paulrobello/parllama/wiki"
[project.scripts]
parllama = "parllama.__main__:run"
[project.optional-dependencies]
web = [
"textual-serve>=1.1.1",
]
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyright>=1.1.391",
"types-pytz>=2024.2.0.20241221",
"types-requests>=2.32.0.20241016",
"types-beautifulsoup4>=4.12.0.20241020",
"pre-commit>=4.0.1",
"google-api-python-client-stubs>=1.28.0",
"pyinstrument>=4.7.3",
"types-orjson>=3.6.2",
"ruff>=0.7.4",
"textual-dev>=1.7.0",
]
[tool.hatch.version]
path = "src/parllama/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = [
"src/parllama",
]
[tool.hatch.build.targets.sdist]
include = [
"src/parllama",
"LICENSE",
"README.md",
"pyproject.toml",
]
exclude = [
"*.pyc",
"__pycache__",
"*.so",
"*.dylib",
]