Compare commits

...

1 Commits

Author SHA1 Message Date
Simon Rosenberg
9d5dca8898 add dependency commit hash 2025-10-13 20:37:06 -03:00

View File

@@ -1,6 +1,6 @@
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling>=1.25" ]
requires = ["hatchling>=1.25"]
[project]
name = "openhands"
@@ -8,7 +8,7 @@ version = "1.0.1"
description = "OpenHands CLI - Terminal User Interface for OpenHands AI Agent"
readme = "README.md"
license = { text = "MIT" }
authors = [ { name = "OpenHands Team", email = "contact@all-hands.dev" } ]
authors = [{ name = "OpenHands Team", email = "contact@all-hands.dev" }]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
@@ -16,8 +16,8 @@ classifiers = [
"Programming Language :: Python :: 3.13",
]
dependencies = [
"openhands-sdk",
"openhands-tools",
"openhands-sdk @ git+https://github.com/All-Hands-AI/agent-sdk.git@50b094a92817e448ec4352d2950df4f19edd5a9f#subdirectory=openhands/sdk",
"openhands-tools @ git+https://github.com/All-Hands-AI/agent-sdk.git@50b094a92817e448ec4352d2950df4f19edd5a9f#subdirectory=openhands/tools",
"prompt-toolkit>=3",
"typer>=0.17.4",
]
@@ -42,13 +42,13 @@ dev = [
]
[tool.hatch.build.targets.wheel]
packages = [ "openhands_cli" ]
packages = ["openhands_cli"]
# uv source pins for internal packages
[tool.black]
line-length = 88
target-version = [ "py312" ]
target-version = ["py312"]
[tool.ruff]
target-version = "py312"
@@ -79,13 +79,10 @@ line_length = 88
[tool.coverage.run]
relative_files = true
omit = [ "tests/*", "**/test_*" ]
omit = ["tests/*", "**/test_*"]
[tool.coverage.paths]
source = [
"openhands_cli/",
"openhands-cli/openhands_cli/",
]
source = ["openhands_cli/", "openhands-cli/openhands_cli/"]
[tool.mypy]
python_version = "3.12"