[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "unitforge"
dynamic = ["version", "licence"]
description = "A library for unit and quantity consistent computations in Rust"
authors = [
{ name = "Dr.Q team", email = "info@askdrq.com" },
{ name = "Henrik Stromberg", email = "henrik@askdrq.com" }
]
readme = "Readme_py.md"
keywords = ["units", "quantities", "simulation", "physics"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.7"
dependencies = [
"numpy>=2.2.0"
]
[project.urls]
Repository = "https://gitlab.com/henrikjstromberg/unitforge"
[tool.maturin]
bindings = "pyo3"
features = ["pyo3"]