mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-04-28 14:52:53 -05:00
- Change README_placeholder.md to README.md - Resolves invalid file reference in package configuration
39 lines
1.1 KiB
TOML
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"
|