forked from danihodovic/celery-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1.04 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
[tool.black]
skip_numeric_underscore_normalization = true
exclude = ".*(venv|virtualenv|.poetry|migrations|node_modules)"
[tool.isort]
profile = "black"
multi_line_output = 3
skip = '.virtualenv,.venv,.poetry,.poetry-cache'
[tool.poetry]
name = "celery-exporter"
version = "0.10.1"
description = ""
authors = ["Dani Hodovic <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
celery = "^5.0"
prometheus-client = "^0.13.1"
click = "^8.0.4"
pretty-errors = "^1.2.19"
loguru = "^0.6.0"
redis = "^4.2.2"
Flask = "^2.2.5"
waitress = "^2.0.0"
pylint = "^2.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.1"
black = "^22.1.0"
isort = "^5.10.1"
jedi = "^0.18.0"
pudb = "^2020.1"
requests = "^2.25.1"
pylint = "^2.7.1"
pytest-cov = "^3.0.0"
ptpython = "^3.0.13"
pytest-mock = "^3.5.1"
pyinstaller = "^5"
mypy = "^0.931"
types-requests = "^2.27.11"
types-waitress = "^2.0.6"
celery-types = "^0.11.0"
pre-commit = "^2.19.0"
pytest-celery = "^0.0.0"
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"