47 lines
813 B
TOML
47 lines
813 B
TOML
[project]
|
|
name = "femsurrogate-tutorial"
|
|
version = "0.1.0"
|
|
description = "Korean tutorial for FEM structural-analysis surrogate models."
|
|
readme = "docs/PRD.md"
|
|
requires-python = ">=3.12,<3.15"
|
|
dependencies = [
|
|
"joblib",
|
|
"matplotlib",
|
|
"numpy",
|
|
"pandas",
|
|
"scikit-learn",
|
|
"scipy",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipykernel",
|
|
"jupyterlab",
|
|
"nbconvert",
|
|
"pytest",
|
|
"ruff",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|
|
extend-exclude = [
|
|
".agents",
|
|
".codex",
|
|
"scripts/execute.py",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP", "B"]
|