-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.25 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
[tool.poetry]
name = "ngi-calculations"
version = "0.1.9"
description = "CPT correlations including commonly used empirical correlations"
authors = [
"Julien Hericher <[email protected]>",
"Ole-Jakob Olsen <[email protected]>"
]
readme = "README.md"
packages = [
{ include = "ngi_calculations", from = "src"},
]
[tool.poetry.dependencies]
python = "^3.12"
pandas = "^2.2.2"
param = "^2.1.0"
scipy = "^1.13.1"
numpy = "^2.0.0"
pydantic = "^2.7.4"
structlog = "^24.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-watcher = "^0.4.2"
ruff = "^0.4.10"
mypy = "^1.10.0"
pandas-stubs = "^2.2.2.240603"
openpyxl = "^3.1.4"
[tool.ruff]
line-length = 120
unfixable = [ "F841"]
extend-select = ["I001"]
src = ["src", "tests"]
[tool.ruff.isort]
known-first-party = ["ngi_cpt_correlations"]
[tool.pytest.ini_options]
addopts = "-s --log-cli-level=INFO"
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.pytest-watcher]
now = true
clear = true
delay = 0.2
runner = "pytest"
runner_args = ["-x"]
patterns = ["*.py"]
ignore_patterns = []
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"