camera ready version

This commit is contained in:
2025-11-17 22:16:49 +05:30
parent 9a1bc55c27
commit eb7146e578
22 changed files with 455 additions and 1191 deletions

View File

@@ -1,9 +1,13 @@
[project]
name = "karpathy-micrograd"
name = "smoltorch"
version = "0.1.0"
description = "Add your description here"
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",
@@ -20,4 +24,9 @@ dev = [
]
[tool.setuptools]
packages = ["nanotorch", "micrograd"]
packages = ["smoltorch"]
[project.urls]
Homepage = "https://github.com/kashifulhaque/smoltorch"
Repository = "https://github.com/kashifulhaque/smoltorch"
Issues = "https://github.com/kashifulhaque/smoltorch/issues"