-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (36 loc) · 1013 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (36 loc) · 1013 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "gitlab_git_processor"
version = "0.1.0"
description = ""
authors = ["Alex Pirogov <pirogovalexandr00@mail.ru>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
pydantic = "^2.7.0"
core = {git = "https://github.com/Universal-code-metrics-analyzer/core.git", rev = "v0.1.0"}
aiohttp = "^3.9.5"
aiofiles = "^23.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
flake8-pyproject = "^1.2.3"
[tool.flake8]
max-line-length = 99
select = ["C", "E", "F", "W", "B", "B950"]
ignore = ["W503", "E704", "F541"]
exclude = [".git", ".venv", "*__pycache__*"]
count = true
[tool.black]
target-version = ["py312"]
line-length = 99
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 80
known_first_party = ["."]
[tool.poetry.plugins."ucma.git_processor.plugin"]
export = "gitlab_git_processor.processor:GitLabGitProcessor"