-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.01 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
[project]
name = "temporal-daf-poc"
version = "0.1.0"
description = "Multi-agent Temporal POC"
readme = "README.md"
requires-python = ">=3.12.6"
dependencies = [
"aioconsole>=0.8.1",
"flit>=3.12.0",
"inflection>=0.5.1",
"slack-sdk>=3.35.0",
"temporalio>=1.11.1",
"vertexai>=1.71.1",
"asyncio (>=3.4.3,<4.0.0)",
"slack-bolt (>=1.23.0,<2.0.0)",
"aiohttp (>=3.12.9,<4.0.0)",
"rich>=14.0.0",
"pygithub>=2.6.1",
]
[dependency-groups]
test = [
"pytest>=8.4.0",
"pytest-asyncio>=0.25.0",
"pytest-mock>=3.14.0",
"pytest-xdist>=3.6.1",
]
[tool.flit.sdist]
include = ['src/**/*', 'README.md', 'pyproject.toml', 'LICENSE']
exclude = ['src/**/*.sh']
[tool.flit.module]
name = "temporal.agent"
[build-system]
# Build system specify which backend is used to build/install the project (flit,
# poetry, setuptools,...). All backends are supported by `pip install`
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[tool.pytest.ini_options]
testpaths = ["tests"]