-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
70 lines (65 loc) · 1.98 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gptui"
authors = [
{ name="Xueao Chao", email="chaoxueao@gmail.com" },
]
description = "A GPT conversational TUI tool that runs within the terminal."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
dynamic = ["version"]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Terminals',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
]
keywords = ["TUI", "terminal", "GPT", "CLI", "textual user interface"]
dependencies = [
'agere>=0.1.3,<1',
'ai-care>=0.1.3,<1',
'aiofiles>=23.1.0,<24',
'beautifulsoup4>=4.12.2,<5',
'blinker>=1.6.2,<2',
'chardet>=5.1.0,<6',
'geocoder>=1.38.1,<2',
'httpx>=0.24.1,<1',
'lxml>=4.9.3,<6',
# 'open-interpreter==0.1.4',
'openai>=1.2.0,<2',
'playsound>=1.3.0,<2',
'Pygments>=2.15.1,<3',
'pyperclip>=1.8.2,<2',
'python-dotenv>=1.0.0,<2',
'PyYAML>=6.0.1,<7',
'qdrant-client>=1.4.0,<2',
'rich>=13.7.0,<14',
'semantic-kernel>=0.4.0.dev0,<1',
'textual>=0.37.1,<1',
'tiktoken>=0.4.0,<1',
'unstructured>=0.10.18,<1'
]
[project.urls]
"Homepage" = "https://github.com/happyapplehorse/gptui"
"Bug Tracker" = "https://github.com/happyapplehorse/gptui/issues"
[project.entry-points."console_scripts"]
gptui = "gptui.__main__:gptui"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = "src"
[tool.setuptools.dynamic]
version = {attr = "gptui.__version__"}