[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "rustorch"
description = "Production-ready PyTorch-compatible deep learning library in Rust"
readme = "README.md"
license = {text = "MIT OR Apache-2.0"}
authors = [
{name = "Jun Suzuki", email = "jun.suzuki.japan@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software 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 :: Rust",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.21.0",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"jupyter>=1.0.0",
"matplotlib>=3.5.0",
"pandas>=1.3.0",
]
[project.urls]
homepage = "https://github.com/JunSuzukiJapan/rustorch"
repository = "https://github.com/JunSuzukiJapan/rustorch"
documentation = "https://docs.rs/rustorch"
[tool.maturin]
features = ["python"]
python-source = "python"
module-name = "rustorch"