-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 807 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 807 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
[tool.poetry]
name = "code_checker"
version = "0.1.0"
description = ""
authors = ["Christopher Bayer <christopher.bayer@luminartech.com>"]
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.3"
pylint = "^2.15.0"
flake8 = "^5.0.4"
flake8-black = "^0.3.3"
flake8-isort = "^4.2.0"
isort = "^5.10.1"
mypy = "^0.971"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
code-checker = "code_checker.main:checker"
code-fixer = "code_checker.main:fixer"
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = 88
[tool.mypy]
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"