Reading handshake into python works

This commit is contained in:
Jonas Linter
2025-09-25 09:47:38 +02:00
parent 9ea09ffa3f
commit 35da6d3c24
11 changed files with 44 additions and 15 deletions

View File

@@ -1,7 +1,11 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alpine-bits-python-server"
version = "0.1.0"
description = "Add your description here"
description = "Alpine Bits Python Server implementation"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
@@ -13,13 +17,15 @@ dependencies = [
"xsdata[cli,lxml,soap]>=25.7",
]
[project.scripts]
alpine-bits-server = "alpine_bits_python.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/alpine_bits_python_server"]
packages = ["src/alpine_bits_python"]
[tool.pytest.ini_options]
testpaths = ["tests"]
testpaths = ["test"]
pythonpath = ["src"]
[tool.ruff]
src = ["src", "tests"]
src = ["src", "test"]