-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (48 loc) · 1.39 KB
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
[build-system]
requires = ["hatchling >= 1.27"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/spoox"]
[project]
name = "spoox"
version = "0.3.1"
authors = [
{ name="Linus Sander", email="linus.sander@tum.de" },
{ name="Fengjunjie Pan", email="f.pan@tum.de" }
]
description = "SPOOX – SPlit lOOp eXpand – Terminal Assistant"
readme = "README_pip.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"anthropic>=0.73.0",
"autogen_core==0.7.5",
"autogen_ext==0.7.5",
"docker_py>=1.10.6",
"langchain_community>=0.4.1",
"nest_asyncio>=1.6.0",
"ollama>=0.6.1",
"proxytypes>=0.10.0",
"pydantic>=2.12.4",
"python-dotenv>=1.2.1",
"questionary>=2.1.1",
"rich>=14.2.0",
"typing_extensions>=4.15.0",
"ddgs>=9",
"art>=6",
"yaspin>=3",
# todo: not sure why those two are not installed automatically by autogen_ext
"tiktoken>=0.9", # required by autogen autogen_ext/models/anthropic/_anthropic_client.py
"openai>=1.99", # required by autogen autogen_ext/models/anthropic/_anthropic_client.py
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/plaume8/spoox"
Issues = "https://github.com/plaume8/spoox/issues"
[project.scripts]
spoox = "spoox.spoox_cli:main"
spoox-h = "spoox.spoox_headless:main"