initial commit FESurrogateModelTutorial

This commit is contained in:
김경종
2026-05-21 17:03:51 +09:00
parent 93665d9ee6
commit 43b86669fa
122 changed files with 7929 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
[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"]