-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
62 lines (53 loc) · 1.68 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyqt-openai"
version = "1.8.1"
description = "Python multipurpose chatbot that user can use GPT, other AI models altogether (Release Name: VividNode)"
authors = [{ name = "Jung Gyu Yoon", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
dependencies = [
"PySide6",
"pyperclip",
"jinja2",
"requests",
"pyaudio",
"pillow",
"psutil",
"openai",
"anthropic",
"google-generativeai",
"replicate",
"llama-index",
"docx2txt",
"openpyxl",
"g4f",
"curl_cffi",
"litellm",
"edge-tts"
]
keywords = ['openai', 'pyqt', 'pyqt5', 'pyqt6', 'pyside6', 'desktop', 'app', 'chatbot', 'gpt', 'replicate', 'gemini', 'claude', 'llama', 'llm', 'gpt4free', 'litellm']
requires-python = "<3.13, >=3.10"
# PySide6 is not available for Python 3.13 yet
# Also below 3.10, Error occurs in Shiboken (which is part of PySide6)
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: User Interfaces"
]
[project.urls]
homepage = "https://github.com/yjg30737/pyqt-openai.git"
[tool.setuptools]
packages = ["pyqt_openai"]
[project.scripts]
pyqt-openai = "pyqt_openai.main:main"