-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.14 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
[tool.poetry]
name = "python-template"
version = "1.0.0"
description = ""
authors = ["peaky76 <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
packages = [
{ include = "python_template" }
] # Rename this when the python_template folder is renamed
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
auto-changelog = "^0.6.0"
coverage = "^7.6.1"
mypy = "^1.11.2"
pre-commit = "^4.0.1"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
radon = "^6.0.1"
ruff = "^0.6.9"
sphinx = "^8.1.3"
sphinx-rtd-theme = "^3.0.1"
toml-cli = "^0.7.0"
[tool.ruff.lint]
select = [
"E", # pycodestyle Error
"F", # pyflakes
"C90", # mccabe
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"FBT", # flake8-boolean-trap
"C4", # flake8-comprehensions
"PYI", # flake8-pyi
"PT", # flake8-pytest-style
"RSE", # flake8-raise
"RET", # flake8-return
"SIM", # flake8-simplify
"PTH", # flake8-use-pathlib
"PERF", # perflint
"FURB", # refurb
"RUF", # ruff specific
]
ignore = ["E501", "E731"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"