Files
alpinebits_python/pyproject.toml
2025-09-25 16:13:25 +02:00

31 lines
673 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "alpine-bits-python-server"
version = "0.1.2"
description = "Alpine Bits Python Server implementation"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"generateds>=2.44.3",
"lxml>=6.0.1",
"pytest>=8.4.2",
"ruff>=0.13.1",
"xsdata-pydantic[cli,lxml,soap]>=24.5",
"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"]
[tool.pytest.ini_options]
testpaths = ["test"]
pythonpath = ["src"]
[tool.ruff]
src = ["src", "test"]