mwalib 2.0.1

A library to simplify reading Murchison Widefield Array (MWA) raw visibilities, voltages and metadata.
Documentation
[project]
name = "mwalib"
description = "A library to work with raw data and metadata from the Murchison Widefield Array (MWA)"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["MWA", "radioastronomy"]
authors = [
  { name = "Greg Sleap", email = "greg.sleap@curtin.edu.au" },
  { name = "Christopher H. Jordan", email = "christopherjordan87@gmail.com" },
  { name = "Dev Null", email = "dev.null@curtin.edu.au" },
]
maintainers = [{ name = "Greg Sleap", email = "greg.sleap@curtin.edu.au" }]
classifiers = [
  "Development Status :: 5 - Production/Stable",
  "Intended Audience :: Science/Research",
  "Topic :: Scientific/Engineering :: Astronomy",
  "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
  "Programming Language :: Python :: 3.10",
  "Programming Language :: Python :: 3.11",
  "Programming Language :: Python :: 3.12",
  "Programming Language :: Python :: 3.13",
  "Programming Language :: Python :: 3.14",
  "Programming Language :: Python :: 3 :: Only",
]
dependencies = [
    "numpy",
]

[project.urls] # Optional
"Homepage" = "https://github.com/MWATelescope/mwalib"
"Bug Reports" = "https://github.com/MWATelescope/mwalib/issues"
"Source" = "https://github.com/MWATelescope/mwalib"

[build-system]
requires = ["setuptools", "wheel", "maturin>=1.0,<2.0"]
build-backend = "maturin"

[tool.maturin]
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
features = ["pyo3/extension-module"]