-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (65 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "autogpt-local-executor"
version = "0.0.1.dev0"
description = "⚠️ EXPERIMENTAL: Local PC shim for the AutoGPT hosted platform"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
keywords = ["autogpt", "experimental", "local-executor"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: System :: Systems Administration",
]
dependencies = [
"pydantic>=2.0",
"pydantic-settings>=2.0",
"websockets>=12.0",
"httpx>=0.27",
"keyring>=25.0",
]
[project.optional-dependencies]
computer-use = [
"pyautogui>=0.9.54",
"Pillow>=10.0",
]
hardware = [
"pyserial>=3.5",
"pyusb>=1.2",
]
local-llm = [
"ollama>=0.2",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-mock>=3.12",
"ruff>=0.4",
"mypy>=1.10",
]
all = [
"autogpt-local-executor[computer-use,hardware,local-llm]",
]
[project.scripts]
autogpt-shim = "autogpt_local_executor.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["autogpt_local_executor"]
[tool.hatch.build.targets.wheel.force-include]
"autogpt_local_executor/templates" = "autogpt_local_executor/templates"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = false
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]