summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-16 23:59:25 -0400
committerpommicket <pommicket@gmail.com>2025-09-16 23:59:25 -0400
commitea1f2121389569d5e0addf8066bca9bf24174c16 (patch)
treea538498f4132c14abb8e7cea9174a72259047bcb /pyproject.toml
Start python library
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml22
1 files changed, 22 insertions, 0 deletions
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"