forked from gitlabform/gitlabform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (77 loc) · 2.51 KB
/
pyproject.toml
File metadata and controls
87 lines (77 loc) · 2.51 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
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "gitlabform"
version = "4.6.1"
authors = [{ name = "Greg Dubicki and Contributors" }]
description = "🏗 Specialized configuration as a code tool for GitLab projects, groups and more using hierarchical configuration written in YAML"
keywords = ["cli", "yaml", "gitlab", "configuration-as-code"]
# there's an issue with the below line as of Feb 2025, see https://stackoverflow.com/q/74818677/2693875
#license = "MIT"
classifiers = [
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Version Control :: Git",
]
requires-python = ">=3.12.0"
dependencies = [
"certifi==2025.11.12",
"cli-ui==0.19.0",
"ez-yaml==1.2.0",
"Jinja2==3.1.6",
"luddite==1.0.4",
"MarkupSafe==3.0.3",
"mergedeep==1.3.4",
"packaging==25.0",
"python-gitlab==7.1.0",
"python-gitlab[graphql]==7.1.0",
"requests==2.32.5",
"ruamel.yaml==0.17.21",
"types-requests==2.32.4.20250913",
"types-setuptools==80.9.0.20251223",
"yamlpath==3.8.2",
]
[project.urls]
Homepage = "https://gitlabform.github.io/gitlabform/"
Repository = "https://github.com/gitlabform/gitlabform.git"
Issues = "https://github.com/gitlabform/gitlabform/issues"
Changelog = "https://gitlabform.github.io/gitlabform/changelog/"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
test = [
"coverage==7.13.1",
"cryptography==46.0.3",
"deepdiff==8.6.1",
"mypy==1.19.1",
"mypy-extensions==1.1.0",
"pre-commit==2.21.0",
"pytest==9.0.2",
"pytest-cov==7.0.0",
"pytest-rerunfailures==16.1",
"xkcdpass==1.20.0",
]
docs = ["mkdocs", "mkdocs-material"]
[project.scripts]
gitlabform = "gitlabform.run:run"
[tool.setuptools.packages.find]
namespaces = false
exclude = ["tests*"]
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
markers = [
"requires_license: marks tests which require GitLab paid (Premium/Ultimate) license '-m \"not requires_license\"')",
]
#uncomment below for debug logging ALWAYS, even if the tests are passing
#log_cli = true
#log_cli_level = "DEBUG"
[tool.black]
line-length = 120