blob: c54b1dfe39ff2f7d174ef7f156286bec5441ab3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "pom_parser"
version = "0.0.2"
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"
Repository = "https://github.com/pommicket/pom-py"
Issues = "https://github.com/pommicket/pom-py/issues"
|