Files
smoltorch/pyproject.toml
2025-11-17 22:16:49 +05:30

33 lines
744 B
TOML

[project]
name = "smoltorch"
version = "0.1.0"
description = "A tiny autograd engine and neural network library built from first principles"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "Kashif", email = "me@ifkash.dev"}
]
dependencies = [
"ipykernel>=7.1.0",
"ipython>=9.7.0",
"matplotlib>=3.10.7",
"mlx>=0.29.4",
"nbconvert>=7.16.6",
"numpy>=2.3.4",
"scikit-learn>=1.7.2",
]
[dependency-groups]
dev = [
"pytest>=9.0.1",
]
[tool.setuptools]
packages = ["smoltorch"]
[project.urls]
Homepage = "https://github.com/kashifulhaque/smoltorch"
Repository = "https://github.com/kashifulhaque/smoltorch"
Issues = "https://github.com/kashifulhaque/smoltorch/issues"