-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
84 lines (72 loc) · 2.05 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "gbpcli"
dynamic = ["version"]
description = "Gentoo Build Publisher Command-Line Interface"
readme = "README.md"
authors = [{name = "Albert Hopkins", email = "[email protected]"}]
license = {text = "GPL3+"}
dependencies = [
"argcomplete>=3.2.1",
"requests",
"rich>=12.5.1",
"yarl",
"platformdirs>=4.2.0",
"distutils-strtobool>=0.1.0",
]
requires-python = ">=3.11"
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Software Distribution",
"Programming Language :: Python :: 3",
]
[project.urls]
homepage = "https://github.com/enku/gbpcli"
repository = "https://github.com/enku/gbpcli"
[project.scripts]
gbp = "gbpcli:main"
[project.entry-points."gbpcli.subcommands"]
build = "gbpcli.subcommands.build"
diff = "gbpcli.subcommands.diff"
inspect = "gbpcli.subcommands.inspect"
keep = "gbpcli.subcommands.keep"
latest = "gbpcli.subcommands.latest"
list = "gbpcli.subcommands.list"
logs = "gbpcli.subcommands.logs"
machines = "gbpcli.subcommands.machines"
notes = "gbpcli.subcommands.notes"
packages = "gbpcli.subcommands.packages"
publish = "gbpcli.subcommands.publish"
pull = "gbpcli.subcommands.pull"
status = "gbpcli.subcommands.status"
tag = "gbpcli.subcommands.tag"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
version = { source = "scm" }
[tool.black]
skip-magic-trailing-comma = true
[tool.coverage.run]
source = ["gbpcli"]
omit = ["src/gbpcli/__main__.py"]
[tool.flake8]
max-line-length = 88
[tool.pylint.master]
init-hook = "import sys; sys.path.insert(0, 'tests')"
ignore-imports = "yes"
[tool.isort]
profile = "black"
[dependency-groups]
dev = [
"black",
"coverage",
"mypy>=1.14.1",
"pylint",
"types-requests",
"types-toml>=0.10.8.7",
"unittest-fixtures @ git+https://github.com/enku/unittest-fixtures.git",
"gbp-testkit @ git+https://github.com/enku/gbp-testkit.git@master",
"gentoo-build-publisher>=2.3.0",
]