forked from dora-metrics/pelorus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (71 loc) · 1.67 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
[project]
name = "pelorus"
version = "0.1.0"
description = "Automate the measurement of organizational behavior"
authors = [{name = "Pelorus community"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"attrs>=26.1.0",
"azure-devops==7.1.0b4",
"certifi>=2026.2.25",
"fastapi>=0.135.3",
"git-url-parse>=1.2.2",
"jira>=3.10.5",
"kubernetes>=35.0.0",
"prometheus-client>=0.24.1",
"python-gitlab>=8.2.0",
"requests>=2.33.1",
"urllib3>=2.6.3",
"uvicorn>=0.44.0",
"pydantic>=2.12.5",
]
[dependency-groups]
dev = [
"black>=26.3.1",
"isort>=8.0.1",
"pre-commit>=4.5.1",
"pylama[toml]>=8.4.1",
"pyright>=1.1.408",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.1.0",
"semver>=3.0.4",
]
doc = [
"cairosvg>=2.9.0",
"diagrams>=0.25.1",
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.6",
"mkdocs-redirects>=1.2.3",
"pillow>=12.2.0",
"pymdown-extensions>=10.21.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.isort]
profile = "black"
src_paths = ["exporters" ,"scripts"]
known_first_party = ["pelorus"]
[tool.pytest.ini_options]
testpaths = ["exporters"]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
"mockoon: tests that should be run with mockoon running"
]
log_cli = true
addopts = [
"--doctest-modules",
"--cov-report=term-missing",
"--cov-report=html",
"--cov=exporters",
]
[tool.pylama]
paths = "exporters scripts"
skip = "exporters/.eggs/*"
[tool.pylama.linter.pycodestyle]
max_line_length = 120
[[tool.pylama.files]]
path = "exporters/tests/*"
ignore= "W0401"