-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (58 loc) · 1.28 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
[tool.poetry]
name = "analysea"
version = "0.1.0"
description = ""
authors = ["Thomas Saillour <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
cartopy = "*"
dask = {version = "*", extras = ["complete"]}
geopandas = "*"
matplotlib = "*"
observer = {git = "https://github.com/seareport/observer.git"}
pandas = "*"
pyposeidon = {git = "https://github.com/ec-jrc/pyPoseidon.git"}
ruptures = "*"
scikit-image = "*"
searvey = "*"
shapely = "*"
thalassa = "*"
utide = "*"
xarray = {version = "*", extras = ["io", "accel"]}
[tool.poetry.group.dev.dependencies]
ipykernel = "*"
ipympl = "*"
jupyter-bokeh = "*"
mypy = "*"
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py38"
line-length = 108
select = [
"E", # pycodestyle
"F", # pyflakes
"C90", # mccabe
]
ignore = [
"E501", # line-too-long
]
[tool.black]
line-length = 108
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
plugins = ["pydantic.mypy"]
show_error_codes = true
show_column_numbers = true
show_error_context = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
strict = true
ignore_missing_imports = true