-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.56 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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "dapr-agents"
dynamic = ["version"]
description = "Agentic Workflows Made Simple"
keywords = ["dapr", "agents", "workflows"]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Dapr Authors", email = "[email protected]"}
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"durabletask-dapr >= 0.2.0a7",
"pydantic == 2.10.5",
"openai == 1.59.6",
"openapi-pydantic == 0.5.1",
"openapi-schema-pydantic==1.2.4",
"regex >= 2023.12.25",
"Jinja2 >= 3.1.6",
"azure-identity == 1.19.0",
"dapr >= 1.15.0",
"dapr-ext-fastapi == 1.15.0",
"dapr-ext-workflow == 1.15.0",
"colorama == 0.4.6",
"cloudevents == 1.11.0",
"pyyaml == 6.0.2",
"rich == 13.9.4",
"huggingface_hub == 0.27.1",
"numpy == 2.2.2",
]
[project.urls]
Documentation = "https://github.com/dapr/docs"
Source = "https://github.com/dapr/python-sdk"
[tool.setuptools.packages.find]
include = ["dapr_agents"]
exclude = ["tests"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"