ztensor 1.0.0

zTensor file library
Documentation
# This is the central configuration file for your Python package.
# It uses the modern PEP 621 standard for metadata and tells tools like
# pip and maturin how to build your project.

[build-system]
# Specifies that we are using `maturin` to build the package.
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
# The name of your package on PyPI.
name = "ztensor"
version = "0.1.4"
description = "Python bindings for the zTensor library."
readme = "README.md" # It's good practice to have a README.
authors = [
    { name = "In Gim", email = "in.gim@yale.edu" },
]
license = "MIT" # Or any other license you prefer
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Intended Audience :: Developers",
    "Topic :: Scientific/Engineering",
]
dependencies = [
    "numpy",
    "cffi",
    "ml_dtypes"
]

[project.urls]
Homepage = "https://github.com/pie-project/ztensor"
Source = "https://github.com/pie-project/ztensor"

[tool.maturin]
profile = "release"
bindings = "cffi"
python-source = "python"