-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[project]
name = "norpm"
version = "1.9"
description = "RPM Macro Expansion in Python"
authors = [{ name="Pavel Raiskup", email="pavel@raiskup.cz" }]
readme = "README.md"
# TODO update to license = "LGPL-2.1-or-later" when we have setuptools >= 77 in all Fedoras
license = { text = "LGPL-2.1-or-later" }
dependencies = [
"lark",
]
[dependency-groups]
test = ["pytest"]
[project.scripts]
norpm-expand-specfile = "norpm.cli.expand_specfile:_main"
norpm-conditions-for-arch-statements = "norpm.cli.conditions_for_arch_statements:_main"
[project.urls]
Homepage = "https://github.com/praiskup/norpm"
Repository = "https://github.com/praiskup/norpm.git"
Issues = "https://github.com/praiskup/norpm/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["norpm", "norpm.cli"]
license-files = ["COPYING"]