-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
146 lines (136 loc) · 3.35 KB
/
pyproject.toml
File metadata and controls
146 lines (136 loc) · 3.35 KB
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
144
145
146
[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 = "probello@gmail.com" },
]
maintainers = [
{ name = "Paul Robello", email = "probello@gmail.com" },
]
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",
"Programming Language :: Python :: 3.14",
"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",
"beautifulsoup4>=4.14.3",
"build>=1.4.0",
"cryptography>=46.0.5",
"docker>=7.1.0",
"httpx>=0.28.1",
"humanize>=4.15.0",
"langchain>=1.2.10",
"ollama>=0.6.1",
"pydantic>=2.11.3",
"pydantic-core>=2.33.1",
"python-dotenv>=1.2.2",
"pytz>=2026.1.post1",
"requests>=2.32.5",
"rich>=14.3.3",
"semver>=3.0.4",
"textual==6.6.0",
"textual-fspicker>=1.0.0",
"urllib3>=2.6.3",
"rich-pixels>=3.0.1",
"orjson>=3.11.7",
"par-ai-core>=0.5.6",
"clipman>=3.3.3",
"xdg-base-dirs>=6.0.2",
"google-genai>=1.66.0",
]
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.2",
]
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyright>=1.1.408",
"types-pytz>=2026.1.1.20260304",
"types-requests>=2.32.4.20260107",
"types-beautifulsoup4>=4.12.0.20250516",
"pre-commit>=4.5.1",
"google-api-python-client-stubs>=1.32.0",
"pyinstrument>=5.1.2",
"types-orjson>=3.6.2",
"ruff>=0.15.4",
"textual-dev>=1.8.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"hatchling>=1.29.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",
]