-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "buildfunctions"
version = "0.2.9"
description = "The Buildfunctions SDK for interacting with serverless functions, hardware-isolated sandboxes, and runtime controls for AI agents"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Buildfunctions" }
]
keywords = [
"AIAgents",
"AIInfrastructure",
"AIApps",
"Serverless",
"GPUs",
"Sandboxes",
"DeveloperExperience",
]
dependencies = [
"httpx>=0.27",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"mypy>=1.13",
"ruff>=0.8",
]
[project.urls]
Homepage = "https://www.buildfunctions.com"
Documentation = "https://www.buildfunctions.com/docs/sdk/quickstart"
Repository = "https://github.com/buildfunctions/sdk-python"
Issues = "https://github.com/buildfunctions/sdk-python/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/buildfunctions"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 120