Commit 474cbc1d authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

build: upgrade to Poetry 2 descriptor

parent 21481f0b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand.
# This file is automatically @generated by Poetry 2.4.1 and should not be changed by hand.

[[package]]
name = "annotated-types"
@@ -1019,5 +1019,5 @@ zstd = ["backports-zstd (>=1.0.0) ; python_version < \"3.14\""]

[metadata]
lock-version = "2.1"
python-versions = ">=3.12"
content-hash = "7cbbf9074c3a63ff89f947fd66545116c71026df9a5acd5fe4ecbc523268f4f9"
python-versions = ">=3.12,<4.0"
content-hash = "1fa2a55d202b8ddb8bc076d315a11b8d8eb57ea8cc57a59fc38eff5a99f191d0"
+27 −13
Original line number Diff line number Diff line
@@ -2,24 +2,38 @@
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
[project]
name = "gitlab-butler"
version = "1.1.21"
description = "GitLab Butler CLI"
authors = ["Pierre Smeyers <pierre.smeyers@gmail.com>"]
license = "LGPL"
authors = [{ name = "Pierre Smeyers", email = "pierre.smeyers@gmail.com" }]
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
packages = [{include = "gitlab_butler"}]

[tool.poetry.dependencies]
python = ">=3.12"
python-gitlab = ">=8.0.0,<8.1.0"
pydantic = ">=2.7.4,<3.0.0"
pyyaml = ">=6.0.1,<7.0.0"
types-pyyaml = ">=6.0.12.20240917,<7.0.0"
urllib3 = ">=2.6.3" # bump minimal version to fix multiple CVEs
requires-python = ">=3.12,<4.0"
dependencies = [
    "python-gitlab (>=8.0.0,<8.1.0)",
    "pydantic (>=2.7.4,<3.0.0)",
    "pyyaml (>=6.0.1,<7.0.0)",
    "types-pyyaml (>=6.0.12.20240917,<7.0.0)",
    "urllib3 (>=2.6.3,<3.0.0)",
]
keywords = ['tool', 'GitLab', 'CI/CD', 'housekeeping']
classifiers = [
  "Development Status :: 4 - Beta",
  "Environment :: Console",
  "Intended Audience :: Developers",
  "License :: OSI Approved :: MIT License",
  "Operating System :: OS Independent",
  "Programming Language :: Python",
  "Programming Language :: Python :: 3",
  "Programming Language :: Python :: 3.12",
  "Programming Language :: Python :: 3.13",
  "Programming Language :: Python :: 3.14",
  "Programming Language :: Python :: 3 :: Only",
]

[tool.poetry.scripts]
[project.scripts]
gitlab-butler = "gitlab_butler.main:run"

[tool.poetry.group.dev.dependencies]