fix(6223): More properly add 'pyproject.toml' and 'poetry.lock' to the pip package (#6658)

This commit is contained in:
zchn
2025-02-07 19:23:42 -05:00
committed by GitHub
parent 52ac2729f7
commit 1c72676483
2 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,4 @@
#!/bin/bash
set -e
cp pyproject.toml poetry.lock openhands
poetry build -v

View File

@@ -7,7 +7,9 @@ license = "MIT"
readme = "README.md"
repository = "https://github.com/All-Hands-AI/OpenHands"
packages = [
{ include = "openhands/**/*" }
{ include = "openhands/**/*" },
{ include = "pyproject.toml", to = "openhands" },
{ include = "poetry.lock", to = "openhands" }
]
[tool.poetry.dependencies]