neopdf_pyapi 0.1.1

Python bindings to NeoPDF Rust library
Documentation
[build-system]
requires = ["maturin>=0.13.4"]
build-backend = "maturin"

[project]
name = "neopdf-hep"
requires-python = ">=3.7"
classifiers = [
  "Development Status :: 4 - Beta",
  "Intended Audience :: Science/Research",
  "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
  "Natural Language :: English",
  "Operating System :: MacOS",
  "Operating System :: Microsoft :: Windows",
  "Operating System :: POSIX",
  "Programming Language :: Python :: 3 :: Only",
  "Programming Language :: Rust",
  "Topic :: Scientific/Engineering :: Physics",
]
dependencies = ["numpy>=1.16.0"]
dynamic = ["version"]

[project.optional-dependencies]
test = ["pytest", "pytest-cov"]

[project.urls]
homepage = "https://github.com/Radonirinaunimi/neopdf"
documentation = "https://radonirinaunimi.github.io/neopdf/"
changelog = "https://github.com/Radonirinaunimi/neopdf/blob/master/CHANGELOG.md"

[tool.maturin]
bindings = "pyo3"
strip = true

[tool.pytest.ini_options]
testpaths = ['tests/']
addopts = [
  '--cov=neopdf',
  '--cov-report=html',
  '--cov-report=xml',
  '--strict-markers',
]
markers = ["multipleversions: test Python API with multiple versions"]