-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.76 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
57
58
59
60
61
62
63
[tool.poetry]
name = "carcassonne"
version = "0.1.0"
description = "Generate carcassonne tiles"
authors = ["jens persson <jens@persson.cx>"]
license = "GPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.6"
[tool.poetry.group.dev.dependencies]
sphinx = "*"
nox = "*"
myst-parser = "*"
sphinx-click = "*"
sphinxcontrib-applehelp = "*"
sphinxcontrib-devhelp = "*"
sphinxcontrib-htmlhelp = "*"
sphinxcontrib-jsmath = "*"
sphinxcontrib-qthelp = "*"
sphinxcontrib-serializinghtml = "*"
sphinx-autodoc2 = { extras = ["cli"], version = "*" }
ruff = "*"
pre-commit = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
carcassonne_sets = "carcassonne.entrypoint:generate_sets"
carcassonne_helper = "carcassonne.entrypoint:helper"
carcassonne_tiler = "carcassonne.entrypoint:tiler"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"S311", # This is not crypto code
"G004", # Allow logging statement uses f-string
"W191", # Not recomended with auto formating
"E111", # Not recomended with auto formating
"E114", # Not recomended with auto formating
"E117", # Not recomended with auto formating
"D206", # Not recomended with auto formating
"D300", # Not recomended with auto formating
"Q000", # Not recomended with auto formating
"Q001", # Not recomended with auto formating
"Q002", # Not recomended with auto formating
"Q003", # Not recomended with auto formating
"COM812", # Not recomended with auto formating
"COM819", # Not recomended with auto formating
"ISC001", # Not recomended with auto formating
"ISC002", # Not recomended with auto formating
]
[tool.ruff.lint.pydocstyle]
convention = "google"