-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 2.29 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (72 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "createos-sandbox"
dynamic = ["version"]
description = "Isolated sandboxes for AI agents and untrusted code: create, run commands, egress allowlist, pause/resume/fork, destroy. Python SDK for CreateOS Sandbox."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "NodeOps Inc." }]
keywords = [
"agent",
"agents",
"ai",
"ai-agents",
"code-execution",
"compute",
"createos",
"createos-sandbox",
"e2b-alternative",
"egress",
"isolated-sandbox",
"isolation",
"runtime",
"sandbox",
"sdk",
"untrusted-code",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["httpx>=0.27,<1"]
[project.urls]
Homepage = "https://createos.sh"
Repository = "https://github.com/NodeOps-app/createos-python-sdk"
Issues = "https://github.com/NodeOps-app/createos-python-sdk/issues"
Changelog = "https://github.com/NodeOps-app/createos-python-sdk/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "ruff>=0.6", "mypy>=1.11", "build>=1.2", "twine>=5"]
[tool.hatch.version]
path = "src/createos/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/createos"]
[tool.hatch.build.targets.sdist]
exclude = ["/assets"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 80
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "D"]
ignore = ["D105", "D107"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"]
"src/createos/__init__.py" = ["F401"]
# Wire-contract dataclasses are documented by their descriptive names and
# typed fields; requiring repetitive per-class prose would reduce clarity.
"src/createos/models.py" = ["D101"]