-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (32 loc) · 1.12 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
[build-system]
requires = ["setuptools", "wheel", "Cython<3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gtk-llm-chat"
version = "1.2.1"
description = "Una interfaz gráfica GTK para chatear con modelos de lenguaje (LLMs)"
readme = "README.md"
authors = [{ name = "Sebastian Silva", email = "sebastian@fuentelibre.org" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["gtk", "chat", "llm", "ai"]
dependencies = [
"PyGObject>=3.42.0",
"markdown-it-py"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/icarito/gtk_llm_chat"
Issues = "https://github.com/icarito/gtk_llm_chat/issues"
Repository = "https://github.com/icarito/gtk_llm_chat.git"
[project.scripts]
gtk-llm-chat = "gtk_llm_chat.main:main"
gtk-llm-applet = "gtk_llm_chat.gtk_llm_applet:main"
[tool.setuptools.packages.find]
exclude = ["desktop*"]
[tool.setuptools.data-files]
"share/applications" = ["desktop/gtk-llm-chat.desktop", "desktop/gtk-llm-applet.desktop"]