25 lines
522 B
TOML
25 lines
522 B
TOML
[project]
|
|
name = "alpine-bits-python-server"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
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",
|
|
]
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/alpine_bits_python_server"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|
|
|
|
[tool.ruff]
|
|
src = ["src", "tests"] |