Compare commits

..

4 Commits

Author SHA1 Message Date
rohitvinodmalhotra@gmail.com 0fb76b2228 Update uv.lock 2025-10-13 17:05:07 -04:00
Rohit Malhotra dadb3c4a80 Merge branch 'main' into rel-cli-1.0.1 2025-10-13 17:04:42 -04:00
rohitvinodmalhotra@gmail.com d8b6b0a0c7 automatic version discovery 2025-10-13 15:32:01 -04:00
rohitvinodmalhotra@gmail.com db4f0ecf4f bump package 2025-10-13 15:11:27 -04:00
+11 -8
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 @ 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",
"openhands-sdk",
"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,10 +79,13 @@ 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"