print_md/pyproject.toml

27 lines
813 B
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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 = "print_md"
version = "0.1"
description = "simple utilities to print markdown on the terminal colorfully"
requires-python = ">=3.9"
# Dependencies that your package needs at installtime
dependencies = [
"termcolor>=3.1.0",
"pygments>=2.12",
]
[project.scripts]
print_md = "print_md:main"