-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (35 loc) · 909 Bytes
/
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
[tool.poetry]
name = "tablespam"
version = "0.1.1"
description = ""
authors = ["Jannik Orzek <[email protected]>", "Christoph Koch"]
readme = "README.md"
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.11"
pyparsing = "^3.2.0"
polars = "^1.17.1"
great-tables = "^0.15.0"
numpy = "^2.2.1"
openpyxl = "^3.1.5"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
ruff = "^0.8.5"
mypy = "^1.14.1"
types-openpyxl = "^3.1.5.20241225"
fastexcel = "^0.12.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Formatting and code checking with ruff
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = false
[tool.ruff.lint]
extend-select = ["D"]
[tool.ruff.lint.per-file-ignores]
# We don't want to check the test files for documentation
"tests/**" = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "google"