-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (56 loc) · 1.08 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
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "project-name" # TODO
version = "0.1.0"
description = "A short description of your package." # TODO
authors = ["ankandrew <61120139+ankandrew@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.test.dependencies]
pytest = "*"
[tool.poetry.group.dev.dependencies]
mypy = "*"
ruff = "*"
pylint = "*"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# pep8-naming
"N",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# flake8-unused-arguments
"ARG",
# Pylint
"PL",
# Perflint
"PERF",
# Ruff-specific rules
"RUF",
# pandas-vet
"PD",
]
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
line-ending = "lf"
[tool.pylint.format]
max-line-length = 100
[tool.pylint.basic]
no-docstring-rgx = "^__|^test_"
[tool.pylint.miscellaneous]
notes = ["FIXME", "XXX"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"