-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "HeatFun"
version = "0.1.0"
description = "Heat Equation Solver"
authors = ["MrP01 <peter@waldert.at>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8"
numpy = "^1.24.1"
matplotlib = "^3.6.2"
tikzplotlib = "^0.10.1"
[tool.poetry.group.dev.dependencies]
invoke = "^1.7.3"
[tool.nitpick]
style = [
"github://MrP01/lint-me-now/nitpick-base-style.toml",
"github://MrP01/lint-me-now/nitpick-latex-style.toml",
"github://MrP01/lint-me-now/nitpick-c-cpp-style.toml",
"github://MrP01/lint-me-now/nitpick-python-style.toml"
]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
exclude = [".git", "**/__pycache__", "build", "stuff", ".cache"]
ignore = ["E731"]
[tool.pyright]
exclude = ["build", "stuff"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"