-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
64 lines (51 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "watchgha"
description = "Watch GitHub action runs"
readme = "README.rst"
authors = [
{name = "Ned Batchelder", email = "[email protected]"},
]
license.text = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.7"
dependencies = [
"click",
"dulwich",
"exceptiongroup",
"httpx>=0.24.1", # 0.24.1 added NetRCAuth()
"rich",
"trio",
]
dynamic = ["version"]
[project.urls]
"Source code" = "https://github.com/nedbat/watchgha"
"Issue tracker" = "https://github.com/nedbat/watchgha/issues"
"Mastodon" = "https://hachyderm.io/@nedbat"
"Funding" = "https://github.com/sponsors/nedbat"
[project.scripts]
watch_gha_runs = "watchgha.watch_runs:main"
[tool.setuptools.dynamic]
version.attr = "watchgha.__version__"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.scriv]
# Changelog management: https://pypi.org/project/scriv/
format = "rst"
output_file = "README.rst"
insert_marker = "scriv-start-here"
end_marker = "scriv-end-here"
[tool.coverage.run]
branch = true