Files
lemdb/pyproject.toml
T

36 lines
619 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 = [
"joblib>=1.4,<2",
"pandas>=2.2,<3",
"pydantic>=2.7,<3",
"pydantic-settings>=2.2,<3",
"scikit-learn>=1.5,<2",
]
[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"]