-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (81 loc) · 2.22 KB
/
pyproject.toml
File metadata and controls
87 lines (81 loc) · 2.22 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[tool.poetry]
name = "WatM-DT"
version = "0.1.0"
description = "Water Management Decision Theater"
authors = ["SongshGeo <songshgeo@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/SongshGeoLab/YR-WatM-DT"
homepage = "https://github.com/SongshGeoLab/YR-WatM-DT"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = ">=3.11"
typing-extensions = ">=4.12.2"
future-annotations = ">=1.0.0"
polars = "^1.31.0"
hvplot = "^0.11.3"
numpy = "^2.3.1"
matplotlib = "^3.10.3"
fastexcel = "^0.16.0"
pyarrow = "^21.0.0"
dash = "^2.17.1"
fastapi = "^0.115.0"
uvicorn = {extras = ["standard"], version = "^0.30.6"}
folium = "^0.20.0"
geopandas = "^1.1.1"
plotly = "^6.3.1"
pyyaml = "^6.0.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.1"
ipywidgets = ">=8.1.5"
allure-pytest = ">=2.13.0"
ipykernel = ">=6.21.2"
flake8 = ">=6.0.0"
isort = ">=5.12.0"
nbstripout = ">=0.6.1"
pydocstyle = ">=6.3.0"
pre-commit-hooks = ">=4.4.0"
snakeviz = ">=2.2.0"
pytest-mpl = ">=0.17.0"
questionary = "~2"
types-pyyaml = "^6.0.12.20250915"
types-requests = "^2.32.4.20250913"
[tool.poetry.group.docs.dependencies]
mkdocs = ">=1.4.2"
mike = ">=2.0.0"
mkdocs-material = ">=9.1.6"
mkdocs-git-revision-date-localized-plugin = ">=1.2.0"
mkdocs-minify-plugin = ">=0.6.4"
mkdocs-redirects = ">=1.2.0"
mkdocs-awesome-pages-plugin = ">=2.8.0"
mkdocs-git-authors-plugin = ">=0.7.0"
mkdocstrings = {extras = ["python"], version = ">=0.24.0"}
mkdocs-bibtex = ">=2.8.16"
mkdocs-macros-plugin = ">=0.7.0"
mkdocs-jupyter = ">=0.24.1"
mkdocs-callouts = ">=1.9.0"
mkdocs-glightbox = ">=0.3.2"
mkdocs-ezlinks-plugin = ">=0.1.14"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 79
max-complexity = 18
extend-ignore = [
"E203", # whitespace before ':'
"E231", # missing whitespace after ','
"E266", # too many leading '#' for block comment
"E501", # line too long
"W503", # line break before binary operator
"F403", # 'from module import *' used
"F405", # name may be undefined, or defined from star imports
"F401", # imported but unused
]
exclude = [
".git",
"__pycache__",
"build",
"dist",
]
select = ["B", "C", "E", "F", "W", "T4", "B9"]