From ea1f2121389569d5e0addf8066bca9bf24174c16 Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 16 Sep 2025 23:59:25 -0400 Subject: Start python library --- pyproject.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e7e0dda --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[build-system] +requires = ["hatchling >= 1.26"] +build-backend = "hatchling.build" + +[project] +name = "pom_parser" +version = "0.0.1" +authors = [ + { name="pommicket", email="pommicket@gmail.com" }, +] +description = "A parser for the POM configuration language" +readme = "README.md" +requires-python = ">=3.9" +classifiers = [ + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", +] +license = "0BSD" + +[project.urls] +Homepage = "https://pom.computer" +Issues = "https://github.com/pommicket/pom-py/issues" -- cgit v1.2.3