1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
[build-system]
requires = ["scikit-build-core[pyproject]>=0.10.0", "nanobind>=2.5.0"]
build-backend = "scikit_build_core.build"
[project]
name = "fenics-basix"
version = "0.10.0.post0"
description = "Basix Python interface"
readme = "../README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ email = "fenics-steering-council@googlegroups.com" },
{ name = "FEniCS Steering Council" },
]
dependencies = ["numpy>=1.21", "nanobind"]
[project.optional-dependencies]
docs = ["markdown", "pylit3", "pyyaml", "sphinx", "sphinx_rtd_theme"]
lint = ["ruff"]
optional = ["numba", "fenics-ufl>=2025.2.0,<2025.3.0"]
test = ["pytest", "sympy", "scipy", "matplotlib", "fenics-basix[optional]"]
ci = ["mypy", "pytest-xdist", "fenics-basix[docs,lint,test,optional]"]
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 100
indent-width = 4
extend-exclude = ["_basixcpp.pyi"]
[tool.scikit-build]
wheel.packages = ["basix"]
wheel.license-files = ["LICENSE"]
|