-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
47 lines (38 loc) · 1.27 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
[project]
name = "classy_blocks"
version = "1.6.4"
description = "Python classes for easier creation of openFoam's blockMesh dictionaries."
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["classy_blocks", "OpenFOAM", "blockMesh"]
authors = [{ name = "Nejc Jurkovic", email = "[email protected]" }]
requires-python = ">=3.8"
dependencies = ["numpy", "scipy", "nptyping"]
[project.urls]
"Homepage" = "https://github.com/damogranlabs/classy_blocks"
"Tutorials" = "https://damogranlabs.com/category/classy_blocks"
"Bug Tracker" = "https://github.com/damogranlabs/classy_blocks/issues"
"Contributing" = "https://github.com/damogranlabs/classy_blocks/blob/master/CONTRIBUTING.md"
[project.optional-dependencies]
dev = ["pytest", "parameterized", "black", "isort", "ruff", "mypy", "pre-commit"]
[tool.black]
line-length = 120
target-version = ["py38"]
[tool.isort]
profile = "black"
py_version = 38
line_length = 120
src_paths = ["src", "tests"]
[tool.ruff]
target-version = "py38"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "N", "UP", "YTT", "B", "A", "ARG", "RUF"]
ignore = ["RUF022"]
[[tool.mypy.overrides]]
module = "scipy,scipy.*,parameterized.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]