forked from fib-international/structuralcodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 1.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = [
"flit_core >=3.2,<4"
]
build-backend = "flit_core.buildapi"
[project]
name = "structuralcodes"
authors = [
{name = "fib - International Federation for Structural Concrete", email = "info@fib-international.org"}
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"numpy>=1.20.0",
"scipy>=1.6.0",
"shapely>=2.0.2",
"triangle>=20230923",
]
dynamic = ["version", "description"]
[project.urls]
source = "https://github.com/fib-international/structuralcodes"
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = "preserve"
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"N",
"BLE",
"I",
"Q",
"D",
"RET",
"SIM",
"ARG",
"PLC",
"PLE",
"PLR",
"PLW",
]
ignore = [
"N802",
"N803",
"N806",
"N999",
"PLR0913",
"PLR2004",
"PLW0603",
"D205",
"D417",
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "single"
multiline-quotes = "double"