structurng repo

This commit is contained in:
Filippo Olivo
2025-09-23 09:42:02 +02:00
parent ce340c9440
commit 6fa720e2e8
2 changed files with 94 additions and 0 deletions

32
pyproject.toml Normal file
View File

@@ -0,0 +1,32 @@
# Choosing a build backend:
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ThermalSolver"
version = "0.0.1"
description = "Thermal conduction surrogate model"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{name = "Filippo Olivo", email = "filippo.olivo@sissa.it"}
]
dynamic = ["dependencies"]
[tool.setuptools.packages.find]
include = ["ThermalSolver*"]
exclude = ["scripts", "tests", "shell", "experiments"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
dev = ["black @ git+https://github.com/psf/black", "pytest"]
[tool.black]
line-length = 80
[tool.isort]
profile = "black"