forked from linagora/Gitlab_Monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (61 loc) · 1.55 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# # --- Copyright (c) 2024 Linagora
# # licence : GPL v3
# # - Flavien Perez [email protected]
# # - Maïlys Jara [email protected]
[tool.poetry]
name = "gitlab_monitor"
version = "1.0.0"
description = "Monitoring application for Gitlab"
license = "GNU GENERAL PUBLIC LICENSE v3"
authors = ["Flavien Perez, Maïlys Jara"]
readme = "README.md"
homepage = "https://ci.linagora.com/linagora/devops/gitlab-monitor"
classifiers = [ "Development Status :: 1 - Planning"]
packages = [
{ include = "gitlab_monitor" }
]
[tool.poetry.dependencies]
python = "^3.11"
python-gitlab = "^3.6.0"
numpy = "^2.1.3"
psycopg2-binary = "^2.9.10"
python-dotenv = "^1.0.1"
pytest = "^8.3.3"
sqlalchemy = "^2.0.36"
types-requests = "^2.32.0.20241016"
typer = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pre-commit = ">=3.6.2"
black = ">=24.2.0"
isort = ">=5.13.2"
pycln = ">=2.4.0"
pylint = ">=3.1.0"
mypy = ">=1.8.0"
bandit = ">=1.7.7"
twine = ">=5.0.0"
pytest = ">=8.0.2"
sphinx = ">=7.2.6"
pytest-cov = ">=4.1.0"
sqlalchemy-stubs = "^0.4"
coverage = "^7.6.10"
myst-parser = "^4.0.0"
sphinx-rtd-theme = "^3.0.2"
[tool.mypy]
ignore_missing_imports = true
exclude = ['tests/', 'doc/*.*', 'gitlab_monitor/__pycache__/*.*']
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
line_length = 80
skip = [".gitignore", ".dockerignore", "doc/conf.py", ".venv/"]
[tool.pylint.MASTER]
ignore-paths = '^doc/.*$'
disable = [
"redefined-builtin"
]
[tool.bandit]
exclude = ['*/tests/*']
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"