-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (67 loc) · 2 KB
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
[project]
name = "b5"
version = "1.5.3"
description = "b5 - simple and sane task runner"
authors = [{ name = "David Danier", email = "danier@team23.de" }]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Systems Administration",
]
requires-python = ">=3.10"
dependencies = [
"Jinja2>=3.1,<4.0",
"MarkupSafe>=3.0,<4.0",
"PyYAML>=6.0,<7.0",
"termcolor>=3.1,<4.0",
"packaging>=24.0",
]
[project.urls]
Homepage = "https://github.com/team23/b5"
Repository = "https://github.com/team23/b5"
Documentation = "https://github.com/team23/b5/tree/master/docs"
[dependency-groups]
dev = [
"pytest>=8.4,<10.0",
"pytest-cov>=7.0,<8.0",
"ruff>=0.13.0,<1.0",
]
[project.scripts]
b5 = "b5.main:main"
b5-init = "b5.init:main"
b5-execute = "b5.execute:main"
[tool.ruff]
line-length = 115
target-version = "py310"
output-format = "grouped"
[tool.ruff.lint]
select = ["F","E","W","C","I","N","UP","ANN","S","B","A","COM","C4","T20","PT","ARG","TD","RUF"]
ignore = ["A001","A002","A003","ANN401","C901","N8","B008","F405","F821","PT009"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"conftest.py" = ["S101","ANN","F401"]
"test_*.py" = ["S101","ANN","F401"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"b5",
]