-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (109 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
121 lines (109 loc) · 2.44 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Copyright (c) Brockmann Consult GmbH, 2024
# License: MIT
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "wqf"
dynamic = ["version"]
authors = [
{ name = "Jorge Garcia", email = "jorge.garcia@brockmann-consult.de" },
{ name = "Ralf Quast", email = "ralf.quast@brockmann-consult.de" },
{ name = "Jorrit Scholze", email = "jorrit.scholze@brockmann-consult.de" },
]
description = """\
A Python package for water quality forecasting\
"""
keywords = [
"time series forecasting",
"water quality",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Oceanography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Private :: No Upload",
]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE", content-type = "text/plain" }
requires-python = ">=3.10,<3.11"
dependencies = [
"dask",
"dask-image",
"cartopy",
"h5netcdf",
"h5py",
"matplotlib",
"netcdf4",
"xarray",
"xbatcher==0.4.0",
# no "xcube-core",
"xgboost==2.1.4",
"zarr",
]
[project.optional-dependencies]
extra = [
"jupyterlab==4.2.5",
"nbstripout",
"seaborn",
]
test = [
"pytest",
"pytest-cov",
]
lint = [
"black",
"flake8",
"jupyterlab-black",
]
[project.scripts]
wqf = "wqf.main.main:main"
[project.urls]
Homepage = "https://bcdev.github.io/fcwq-wqf/"
Repository = "https://github.com/bcdev/fcwq-wqf/"
[tool.black]
line-length = 78
target-version = ["py310"]
[tool.coverage.report]
exclude_also = [
"@nb.guvectorize",
"@nb.vectorize",
]
[tool.coverage.run]
omit = [
"wqf/interface/*",
"wqf/templates/*",
"wqf/val/*",
]
[tool.pytest.ini_options]
addopts = "-p no:warnings"
testpaths = ["test"]
[tool.setuptools.dynamic]
version = { attr = "wqf.__version__" }
[tool.setuptools.packages.find]
include = [
"wqf*",
]
exclude = [
"test*",
]
[tool.setuptools.package-data]
"wqf.config" = [
"*.json",
"*.yml",
]
"wqf.templates" = [
"*.cdl",
]
"wqf.xgb.config" = [
"*.json",
"*.yml",
]