-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.25 KB
/
pyproject.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "wait-for-copr"
authors = [
{ name = "Red Hat", email = "[email protected]" },
]
description = "A tool to wait for dependencies being built in Copr."
readme = "README.md"
license = "MIT"
license-files = { paths = ["LICENSE"] }
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Utilities",
]
dynamic = ["version"]
keywords = [
"git",
"packaging",
"fedora",
"rpm",
]
dependencies = [
"click",
"copr",
]
[project.urls]
Homepage = "https://github.com/packit/wait-for-copr"
[project.scripts]
wait-for-copr = "wait_for_copr:wait_for_copr"
[tool.hatch.version]
source = "vcs"
raw-options.version_scheme = "post-release"
[tool.hatch.build.targets.wheel]
packages = ["wait_for_copr"]