-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (44 loc) · 1.05 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
# SPDX-FileCopyrightText: 2023 DB Systel GmbH
#
# SPDX-License-Identifier: Apache-2.0
[tool.poetry]
name = "contribution-checker"
version = "0.1.0"
description = "Check for contributions matching a certain pattern in repositories"
authors = ["Max Mehl <[email protected]>"]
readme = "README.md"
packages = [{include = "contribution_checker"}]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
gitpython = "^3.1.41"
numpy = "^1.25.2"
matplotlib = "^3.7.2"
tqdm = "^4.66.3"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.4"
black = "^24.3.0"
pylama = "^8.4.1"
isort = "^5.12.0"
mypy = "^1.5.0"
types-tqdm = "^4.66.0.1"
[tool.poetry.scripts]
contribution-checker = 'contribution_checker.checker:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# FORMATTING settings
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
# MYPY settings
[tool.mypy]
files = [
"contribution_checker/*.py",
]
[[tool.mypy.overrides]]
module = [
"matplotlib",
"matplotlib.pyplot",
]
ignore_missing_imports = true