ruff for code formatting BIC statistic AND BIC test implemented test_distributions.py for test new created dists with pytest REFACTOR: k_gen pdf changed from 2 params to generalized
40 lines
689 B
TOML
40 lines
689 B
TOML
[project]
|
|
name = "clutter_chuva"
|
|
version = "0.1.0"
|
|
description = "Tools for fitting distributions to rain clutter data"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"ipykernel",
|
|
"kaleido",
|
|
"lxml",
|
|
"nbformat",
|
|
"numpy",
|
|
"pathlib2",
|
|
"plotly",
|
|
"scipy",
|
|
"statsmodels",
|
|
"matplotlib",
|
|
"seaborn",
|
|
"ruff>=0.15.9",
|
|
"python-dotenv>=1.2.2",
|
|
]
|
|
classifiers = ["Private :: Do Not Upload"]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.6,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.9",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[tool.ruff.format]
|
|
skip-magic-trailing-comma = true |