-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1018 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1018 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
45
46
47
48
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "sandd"
version = "0.0.0"
description = "A lightweight sandbox daemon for secure agent execution in isolated environments."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "InftyAI", email = "contact@inftyai.com"}
]
keywords = ["agent", "daemon", "sandbox"]
dependencies = []
[project.urls]
Homepage = "https://github.com/InftyAI/SandD"
Repository = "https://github.com/InftyAI/SandD"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"black>=23.0",
"mypy>=1.0",
]
[tool.maturin]
module-name = "sandd._core"
python-source = "python"
features = ["pyo3/extension-module"]
include = [
"server/**/*",
"python/**/*",
"README.md",
"LICENSE",
]
exclude = [
"Cargo.toml",
"sandd/**/*",
"target/**/*",
".git/**/*",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"