-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 820 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 820 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "physical-agent"
version = "0.1.0"
description = "A Markdown-native runtime for safe physical-world agents."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Physical Agent Contributors" }
]
license = { text = "Apache-2.0" }
dependencies = [
"pydantic>=2.6",
"typer>=0.12",
"PyYAML>=6.0",
"jsonschema>=4.21",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.scripts]
physical-agent = "physical_agent.cli:app"
[tool.setuptools.packages.find]
include = ["physical_agent*"]
[tool.setuptools.package-data]
physical_agent = ["gui/static/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = ["."]