[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "taco-format"
description = "TACO (Trajectory and Compressed Observables) Format for molecular dynamics data"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "TACO Format Developers"}
]
keywords = ["molecular-dynamics", "compression", "trajectory", "simulation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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 :: Rust",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.20.0",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/username/taco_format"
Documentation = "https://taco-format.readthedocs.io/"
[project.scripts]
taco = "taco_format:cli_main"
[tool.maturin]
bindings = "pyo3"
include = ["src/**/*", "Cargo.toml", "Cargo.lock"]