-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
150 lines (142 loc) · 3.41 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
144
145
146
147
148
149
150
[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",
"attrs>=25.1.0",
"beautifulsoup4>=4.13.3",
"build>=1.2.2.post1",
"cryptography>=44.0.1",
"docker>=7.1.0",
"httpx>=0.28.1",
"humanize>=4.11.0",
"langchain>=0.3.19",
"ollama>=0.4.7",
"pydantic>=2.10.6",
"pydantic-core>=2.27.2",
"python-dotenv>=1.0.1",
"pytz>=2025.1",
"requests>=2.32.3",
"rich>=13.9.4",
"semver>=3.0.4",
"textual[syntax]>=2.1.0",
"textual-fspicker>=0.2.0",
"urllib3>=2.3.0",
"rich-pixels>=3.0.1",
"orjson>=3.10.15",
"par-ai-core>=0.1.20",
"clipman>=3.3.1",
"google-generativeai>=0.8.4",
]
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"
[build-system]
requires = [
"hatchling",
"wheel",
]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyright>=1.1.391",
"build>=1.2.2.post1",
"twine>=6.0.1",
"types-pytz>=2024.2.0.20241221",
"textual-dev>=1.7.0",
"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",
"typing-extensions>=4.12.2",
"types-simplejson>=3.19.0.20241221",
"pyinstrument>=4.7.3",
"types-orjson>=3.6.2",
"ruff>=0.7.4",
]
[tool.hatch.version]
path = "src/parllama/__init__.py"
[tool.hatch.build.targets.wheel]
packages = [
"src/parllama",
]
include = [
"py.typed",
"**/*.py",
"**/*.html",
"**/*.gif",
"**/*.jpg",
"**/*.png",
"**/*.md",
"**/*.tcss",
]
[tool.hatch.build.targets.sdist]
include = [
"src/parllama",
"LICENSE",
"README.md",
"pyproject.toml",
]
exclude = [
"*.pyc",
"__pycache__",
"*.so",
"*.dylib",
]