Files
TinyTorch/MANIFEST.in
Vijay Janapa Reddi 38a91184b3 Remove temporary planning documents and prepare package for pip install
- Remove DECEMBER_2024_RELEASE.md (temporary release checklist)
- Remove module_20_consistency_review.md (internal review document)
- Remove PEDAGOGICAL_IMPROVEMENTS_PLAN.md (planning document)
- Remove benchmark_results/benchmark_report.md (generated report)

- Fix pyproject.toml for proper pip installation:
  - Update version to 0.1.0 to match __init__.py
  - Fix package discovery to use tinytorch instead of tinytorch_placeholder
  - Add proper dependencies (numpy, rich, PyYAML)
  - Add optional dev dependencies
  - Update project URLs and metadata
  - Exclude non-package directories from distribution

- Add MANIFEST.in to ensure LICENSE and README are included in package
2025-11-14 18:28:23 -05:00

9 lines
182 B
Plaintext

include README.md
include LICENSE
include pyproject.toml
recursive-include tinytorch *.py
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-exclude * .DS_Store