forked from google-deepmind/actionengine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.07 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
53
54
55
[project]
name = "action-engine"
version = "0.4.2"
authors = [{ name = "Helena Pankov", email = "helenapankov@actionengine.dev" }]
description = "API and UI SDK for sleek applications with agentic, generative, streaming capabilities"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"absl-py>=2.2.2",
"numpy>=2,<2.3.0",
"ormsgpack",
"Pillow",
"pydantic",
"pybind11>=2.13.6",
]
[project.scripts]
actionengine = "actionengine.cli.main:sync_main"
[build-system]
requires = [
"wheel",
"build",
"cmake==3.31.6",
# "ninja",
"setuptools",
"ormsgpack",
"numpy>=2,<2.3.0",
# "pybind11>=2.13.6",
"pybind11-stubgen>=2.5.5",
"Pillow",
"pydantic",
]
build-backend = "build_py"
backend-path = ["./"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["py"]
include = ["actionengine", "actionengine.proto"]
[tool.setuptools.package-data]
actionengine = ["*.so", "_C/*.pyi"]
[tool.black]
line-length = 80
[tool.isort]
line_length = 80
profile = "black"