From d62feb945ff262ae9f21f523b8a60b195360c482 Mon Sep 17 00:00:00 2001 From: "B.T. Franklin" Date: Wed, 10 Apr 2024 14:33:46 -0700 Subject: [PATCH] Add classifiers and project URLs to pyproject.toml --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 57152cd..5d54319 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,19 @@ dependencies = [] requires-python = ">=3.10" readme = "README.md" license = {text = "MIT"} +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Intended Audience :: Developers", + "Topic :: File Formats", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Text Processing :: Markup :: Markdown" +] + +[project.urls] +Homepage = "https://github.com/btfranklin/promptdown" +Issues = "https://github.com/btfranklin/promptdown/issues" [build-system] requires = ["pdm-backend"]