-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
57 lines (54 loc) · 1.67 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
# This file was generated by liblab | https://liblab.com/
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "toolhouse"
version = "1.3.1"
license = {file = "LICENSE"}
authors = [
{ name = "Toolhouse Technologies", email = "[email protected]" },
]
description = "The official Python SDK for the Toolhouse API"
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = [
"requests",
"http-exceptions",
"openai",
"anthropic",
"groq",
"llama-index",
"python-dotenv>=1.0.1",
]
requires-python = ">=3.8"
classifiers = [
"Typing :: Typed",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License"
]
keywords = ["toolhouse", "ai", "llm", "sdk"]
maintainers = [
{ name = "Toolhouse Technologies", email = "[email protected]" },
]
[project.urls]
Homepage = "https://toolhouse.ai"
Repository = "https://github.com/toolhouseai/toolhouse-sdk-python"
Documentation = "https://docs.toolhouse.ai"
"Bug Tracker" = "https://github.com/toolhouseai/toolhouse-sdk-python/issues"
"Release Notes" = "https://github.com/toolhouseai/toolhouse-sdk-python/releases"
[project.optional-dependencies]
test = [
"pytest",
"responses"
]