-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (53 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
73 lines (53 loc) · 1.15 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "fw-h"
version = "1.3.0"
description = "A solver for the Ffowcs Williams and Hawkings (FW-H) equation written in Python using Farassat's Formulation 1A."
license = "MIT"
authors = [
"Matthew Mehrtens <12023414+mcmehrtens@users.noreply.github.com>",
]
readme = "README.md"
repository = "https://github.com/mcmehrtens/FW-H-Solver"
keywords = ["fw-h", "solver"]
[tool.poetry.dependencies]
python = "^3.13.1"
pyyaml = "^6.0.2"
pydantic = "^2.10.3"
sympy = "^1.13.3"
numpy = "^2.2.0"
matplotlib = "^3.9.3"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
sphinx = "^8.1.3"
sphinx-rtd-theme = "^3.0.2"
[tool.poetry.scripts]
fw-h = "fw_h.fw_h:main"
[tool.ruff]
target-version = "py313"
exclude = [
".python-version",
"input",
"log",
"output",
"docs",
]
line-length = 79
[tool.ruff.lint]
select = [
"ALL",
]
ignore = [
"COM812",
"E501",
"ISC001",
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.pycodestyle]
max-doc-length = 72
[tool.ruff.format]
docstring-code-format = true
preview = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"