-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 748 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 748 Bytes
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
[tool.poetry]
name = "gitlab-bm"
version = "0.1.3"
description = "Schedule/Run Gitlab Backups"
authors = ["Jason Hollis <400979+CodeBleu@users.noreply.github.com>"]
homepage = "https://github.com/CodeBleu/gitlab_bm"
license = "MIT"
readme = "README.md"
packages = [{include = "gitlab_bm", from = "src"}]
[tool.poetry.scripts]
glbm = "gitlab_bm.main:app"
[tool.poetry.dependencies]
python = "^3.10"
boto3 = "^1.34.36"
typer = "^0.9.0"
slack-sdk = "^3.26.2"
pyyaml = "^6.0.1"
tomlkit = "^0.12.3"
[tool.poetry.group.dev.dependencies]
ptpython = "^3.0.26"
pudb = "^2024.1"
pylint = "^3.0.3"
pytest = "^8.0.0"
moto = "^5.0.1"
pytest-sugar = "^1.0.0"
tox = "^4.12.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"