pyproject.toml 585 Bytes
Newer Older
Michael Yang's avatar
Michael Yang committed
1
2
[tool.poetry]
name = "ollama"
Jeffrey Morgan's avatar
Jeffrey Morgan committed
3
4
version = "0.0.2"
description = "Run ai models locally"
Michael Yang's avatar
Michael Yang committed
5
authors = ["ollama team"]
Michael Yang's avatar
Michael Yang committed
6
7
8
9
10
readme = "README.md"
packages = [{include = "ollama"}]
scripts = {ollama = "ollama.cmd.cli:main"}

[tool.poetry.dependencies]
Michael Yang's avatar
Michael Yang committed
11
python = "^3.8"
Michael Yang's avatar
Michael Yang committed
12
llama-cpp-python = "^0.1.66"
13
jinja2 = "^3.1.2"
Michael Yang's avatar
Michael Yang committed
14
15
16

aiohttp = {version = "^3.8.4", optional = true}
aiohttp-cors = {version = "^0.7.0", optional = true}
Bruce MacDonald's avatar
Bruce MacDonald committed
17
18
requests = "^2.31.0"
tqdm = "^4.65.0"
Michael Yang's avatar
Michael Yang committed
19
20
21
22
23
24
25

[tool.poetry.extras]
server = ["aiohttp", "aiohttp_cors"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"