structurng repo
This commit is contained in:
32
pyproject.toml
Normal file
32
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user