Files
TinyTorch/pyproject.toml
Vijay Janapa Reddi ab809052da Fix pyproject.toml readme reference
- Change README_placeholder.md to README.md
- Resolves invalid file reference in package configuration
2025-11-10 06:21:14 -05:00

39 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project]
name="tinytorch"
version = "0.0.1"
description = "🚧 TinyTorch: Educational Deep Learning Framework (Coming Soon)"
readme = "README.md"
requires-python=">=3.8"
authors = [
{name = "Vijay Janapa Reddi", email = "vj@eecs.harvard.edu"}
]
license = "MIT"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Education",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/VJ/TinyTorch"
Repository = "https://github.com/VJ/TinyTorch"
Issues = "https://github.com/VJ/TinyTorch/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["tinytorch_placeholder*"]
[tool.setuptools.package-dir]
tinytorch = "tinytorch_placeholder"