29 lines
472 B
TOML
29 lines
472 B
TOML
[project]
|
|
name = "agentmsgs"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "lda", email = "[email protected]" }
|
|
]
|
|
requires-python = ">=3.14"
|
|
dependencies = []
|
|
|
|
[tool.uv]
|
|
package = true
|
|
|
|
[project.scripts]
|
|
agentmsgs = "agentmsgs:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.12.3,<0.13.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.1.1",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|