summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: e7e0dda7589c30e6e22bb45ea460537c22de9a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"