diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 22 |
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" |