33 lines
553 B
TOML
33 lines
553 B
TOML
[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"]
|