-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.16 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
[tool.poetry]
name = "reviewcheck"
version = "0.7.0"
description = "Tool to stay up to date with your reviews on GitLab – Don't let a comment slip you by"
authors = ["Simon Bengtsson <[email protected]>", "Pontus Laos <[email protected]>"]
license = "Apache-2.0 license"
readme = "README.md"
homepage = "https://github.com/volvo-cars/Reviewcheck"
keywords = ["code review", "gitlab"]
[tool.poetry.scripts]
reviewcheck = "reviewcheck.app:run"
[tool.poetry.dependencies]
python = ">=3.8.1"
requests = ">=2.27.1"
pyyaml = ">=5.1"
shtab = ">=1.5.4"
colorama = ">=0.4.4"
rich = ">=12.4.4"
[tool.poetry.group.dev.dependencies]
flake8 = ">=4.0.1"
pytest = ">=7.0.1"
types-PyYAML = ">=6.0.7"
types-requests = ">=2.27.29"
isort = ">=5.10.1"
black = ">=24.3.0"
mypy = ">=0.961"
flake8-docstrings = ">=1.6.0"
flake8-rst-docstrings = ">=0.2.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
color_output = true
profile = "black"
[[tool.mypy.overrides]]
module = [
"shtab",
"rich",
"rich.console",
"rich.panel",
"rich.progress",
"rich.table",
"rich.text"
]
ignore_missing_imports = true