-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.43 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
[build-system]
requires = [
"setuptools>=64"
]
build-backend = "setuptools.build_meta"
[project]
name = "chatthy"
description = "A minimal LLM network chat server/client app."
authors = [
{name = "Ati Sharma", email = "[email protected]"},
]
dynamic = ["version", "readme"]
requires-python = ">=3.11"
keywords = ["hy", "hylang", "zeromq", "llm", "openai", "anthropic"]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Lisp"
]
dependencies = [
"clipman",
"hy",
"hyjinx[zmq]",
"hyrule",
"pansi==2020.7.3",
"platformdirs",
"prompt_toolkit",
"pygments",
"tabulated[widechars]",
"tiktoken",
"toolz"
]
[project.optional-dependencies]
server = ["hyjinx[dev]", "trag", "fvdb"]
[project.urls]
Repository = "https://github.com/atisharma/chatthy"
[project.scripts]
chatthy = "chatthy.__main__:run"
chat = "chatthy.__main__:run"
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
version = {attr = "chatthy.__version__"}
[tool.setuptools.package-data]
"*" = ["*.hy", "*.md", "*.json", "*.toml"]
# ... other project metadata fields as listed in:
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/