mirror of
https://github.com/chyok/ollama-gui.git
synced 2024-11-25 16:32:47 +08:00
dbe49cef26
Update version to 1.2.1
22 lines
585 B
TOML
22 lines
585 B
TOML
[tool.poetry]
|
|
name = "ollama-gui"
|
|
version = "1.2.1"
|
|
description = "A very simple ollama GUI, implemented using the built-in Python Tkinter library, with no additional dependencies."
|
|
authors = ["chyok <chyok@hotmail.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://github.com/chyok/ollama-gui"
|
|
repository = "https://github.com/chyok/ollama-gui"
|
|
packages = [{ include = "ollama_gui.py" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.6"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
ollama-gui = "ollama_gui:run"
|