feat: initialize data-layer project skeleton

This commit is contained in:
2026-09-11 09:09:26 +08:00
parent 9a9804d6d8
commit 3ebc097410
10 changed files with 620 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lmpm"
version = "0.1.0"
description = "Laser material parameter matching toolkit"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.7,<3",
"pydantic-settings>=2.2,<3",
]
[dependency-groups]
dev = [
"pytest>=9,<10",
"ruff>=0.5",
]
[tool.hatch.build.targets.wheel]
packages = ["src/lmpm"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 88
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]