-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.18 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "utcp"
version = "0.2.1"
authors = [
{ name = "Razvan-Ion Radulescu" },
{ name = "Andrei-Stefan Ghiurtu" },
{ name = "Juan Viera Garcia" },
{ name = "Ali Raza" },
{ name = "Ulugbek Isroilov" }
]
description = "Universal Tool Calling Protocol (UTCP) client library for Python"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0",
"authlib>=1.0",
"python-dotenv>=1.0",
"tomli>=2.0",
"aiohttp>=3.8",
"mcp>=1.0",
"pyyaml>=6.0",
"gql>=3.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MPL-2.0"
[project.optional-dependencies]
dev = [
"build",
"pytest",
"pytest-asyncio",
"pytest-aiohttp",
"pytest-cov",
"coverage",
"fastapi",
"uvicorn",
"twine",
]
[project.urls]
Homepage = "https://utcp.io"
Source = "https://github.com/universal-tool-calling-protocol/python-utcp"
Issues = "https://github.com/universal-tool-calling-protocol/python-utcp/issues"