-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 945 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 945 Bytes
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "workforce-runtime"
version = "0.1.0"
description = "Organization runtime for coordinating third-party AI worker agents."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"cerebras-cloud-sdk>=1.67",
"groq>=1.5",
"pika>=1.3",
"pexpect>=4.9",
"pymysql>=1.1",
"pydantic>=2.7",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[project.scripts]
workforce-runtime = "workforce_runtime.__main__:main"
[tool.setuptools.packages.find]
include = ["workforce_runtime*"]
[tool.setuptools.package-data]
workforce_runtime = [
"dashboard/assets/*.js",
"dashboard/static/*.html",
"dashboard/static/assets/*",
"dashboard/frontend/*.html",
"dashboard/frontend/*.js",
"dashboard/frontend/*.json",
"dashboard/frontend/src/*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]