# pyproject.toml # ------------------------------------------------------------------ # 1. Build backend: setuptools + wheel # ------------------------------------------------------------------ [build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" # ------------------------------------------------------------------ # 2. Project metadata (replaces the `setup()` call) # ------------------------------------------------------------------ [project] name = "term_color_md" version = "0.1" description = "simple utilities to render markdon on the terminal" requires-python = ">=3.9" # Dependencies that your package needs at install‑time dependencies = [ "termcolor>=3.1.0", "pygments>=2.12", ]