[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[project]
name = "glmm"
version = "0.1.1"
description = "Linear-regression family OLS / GLM / LMM / GLMM — Python port of the glmm crate"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.10"
dependencies = ["numpy>=1.24"]
authors = [{ name = "Paweł Lenartowicz" }]
keywords = ["statistics", "glmm", "regression", "mixed-models", "mle"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
Homepage = "https://github.com/pawlenartowicz/glmm"
Repository = "https://github.com/pawlenartowicz/glmm"
Changelog = "https://github.com/pawlenartowicz/glmm/blob/main/CHANGELOG.md"
[project.optional-dependencies]
test = ["pytest"]
[tool.maturin]
manifest-path = "../glmm-python/Cargo.toml"
module-name = "glmm._native"
python-source = "."
features = ["pyo3/extension-module"]
include = ["faststats/**/*.py"]
[tool.ruff]
line-length = 100
target-version = "py310"