-
Florian Obersteiner authoredFlorian Obersteiner authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
pyproject.toml 1.07 KiB
[project]
name = "caribic-dash"
version = "0.0.17"
description = "IRISCC dashboard with CARIBIC data"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"dash>=2.18.2",
"dash-bootstrap-components>=2.0.0",
"gunicorn>=23.0.0",
"netcdf4>=1.7.2", # indirect; backend for xarray
"pandas>=2.2.3",
"plotly>=6.0.1",
"python-dotenv>=1.0.1",
"siphon>=0.10.0",
"xarray>=2025.3.0",
]
[dependency-groups]
dev = ["black>=25.1.0", "pytest>=8.3.5", "reuse>=5.0.2", "ruff>=0.11.0"]
[project.urls]
Homepage = "https://iagos-caribic.atmohub.kit.edu/iriscc"
Issues = "https://gitlab.kit.edu/kit/imk-asf-top/iriscc-dashboard/issues"
Changelog = "https://gitlab.kit.edu/kit/imk-asf-top/iriscc-dashboard/blob/main/CHANGELOG.md"
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312", "py313"]
[tool.ruff]
target-version = "py312"
exclude = ["experiments", "assets", "testdata", "build"]
lint.ignore = ["E501"]
lint.extend-select = ["I", "C4", "SIM"]