`generate_data.py` for processing and fitting statistical distributions to data. 'distributions.py' to create new dists to fit 'analysis_data.ipynb" notebook for data analysis
30 lines
555 B
TOML
30 lines
555 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
|