forked from elijah-roberts/gitlab-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.37 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
[tool.poetry]
name = "gitlab-lint-srt"
version = "0.8.1"
description = "This is a CLI application to quickly lint .gitlab-ci.yml files using the gitlab api"
authors = ["Elijah Roberts <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/elijah-roberts/gitlab-lint"
repository = "https://github.com/elijah-roberts/gitlab-lint"
keywords = ["gitlab", "lint"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Quality Assurance",
]
include = [
"LICENSE",
]
packages = [
{ include = "gitlab_lint", from = "src" },
]
[tool.poetry.scripts]
gll = "gitlab_lint.gll:gll"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
requests = "^2.31.0"
fqdn = "^1.5.1"
[tool.poetry.group.dev.dependencies]
poetry = "*"
pytest = "^7.3.1"
pre-commit = "^3.3.2"
bandit = "^1.7.5"
# TODO: Re-add when it's not stuffed
# safety = "^2.3.5"
commitizen = "^2.42.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version = "0.8.1"
version_files = [
"pyproject.toml:version",
"src/gitlab_lint/__init__.py:__version__"
]
[tool.pymarkdown]
plugins.line-length.line_length = 160
plugins.line-length.code_block_line_length = 160