generated from bitwarden/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (39 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bitwarden_workflow_linter"
dynamic = ["version"]
authors = []
description = "Custom GitHub Action Workflow Linter"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"annotated-types==0.7.0",
"dataclasses-json==0.6.6",
"marshmallow==3.21.2",
"mypy-extensions==1.0.0",
"packaging==24.0",
"pydantic==2.7.2",
"pydantic-core==2.18.3",
"pyyaml==6.0.1",
"ruamel.yaml==0.18.6",
"ruamel.yaml.clib==0.2.8",
"typing-extensions==4.12.0",
"typing-inspect==0.9.0",
"urllib3==2.2.1",
]
[project.urls]
Homepage = "https://github.com/bitwarden/workflow-linter"
Issues = "https://github.com/bitwarden/workflow-linter/issues"
[project.scripts]
bwwl = "bitwarden_workflow_linter.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/bitwarden_workflow_linter"]
[tool.hatch.version]
path = "src/bitwarden_workflow_linter/__about__.py"