-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (63 loc) · 1.73 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
[project]
name = "b5"
version = "1.4.5"
description = "b5 - simple and sane task runner"
authors = [
{name = "David Danier",email = "[email protected]"}
]
license = "MIT"
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'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.9',
'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.9"
dependencies = [
"Jinja2>=3.1,<4.0",
"MarkupSafe>=3.0,<4.0",
"PyYAML>=6.0,<7.0",
"termcolor>=2.5,<3.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.3,<9.0",
"pytest-cov>=6.0,<7.0",
"ruff>=0.9.10",
]
[project.scripts]
b5 = 'b5.main:main'
b5-init = 'b5.init:main'
b5-execute = 'b5.execute:main'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 140
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"b5",
]