-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (52 loc) · 1.45 KB
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
[project]
name = "demineur-game"
version = "1.0.0"
description = "Python implementation of the classic Minesweeper game, also known as 'Demineur' (🇫🇷). The game features a graphical user interface and includes a bot option for automatically solving the game."
readme = "README.md"
authors = [
{ name = "Eliot CHRISTON", email = "eliot.christon@gmail.com" },
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pygame==2.6.1",
]
optional-dependencies.dev = [
"pre-commit==4.2",
"pylint==3.3.7",
"pytest==8.4.1",
]
urls.repository = "https://github.com/eliot-christon/demineur_ai"
[tool.ruff]
target-version = "py38"
line-length = 100
lint.select = [ "ALL" ]
lint.ignore = [ "COM812", "D", "ERA", "T" ]
[tool.pylint]
max-line-length = 100
max-positional-arguments = 10
max-args = 10
max-nested-blocks = 10
min-public-methods = 0
max-attributes = 10
max-locals = 20
max-branches = 25
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"line-too-long",
]
unsafe-load-any-extension = true
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true