From 3229c178cb360d00457ef9be6bb276c7d385acd1 Mon Sep 17 00:00:00 2001 From: eykd Date: Tue, 31 Dec 2024 15:30:06 -0800 Subject: [PATCH] chore: add license, trove metadata --- pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 11fa48d..2cf6e67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,9 +5,21 @@ description = "SYML (Simple YAML-like Markup Language) is a simple markup langua authors = ["David Eyk "] homepage = "https://github.com/eykd/syml/" repository = "https://github.com/eykd/syml" +license = "MIT" readme = "README.md" packages = [{include = "syml", from = "src"}] +classifiers = [ + "Development Status :: 4 - Beta", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.12", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Text Processing :: Markup", +] + + [tool.poetry.dependencies] python = "^3.12" parsimonious = "^0.10.0"