-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 865 Bytes
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 865 Bytes
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
[tool.poetry]
name = "conversion_utils"
version = "0.1.0"
description = ""
authors = ["ai-validation-team <ai-validation@minibzk.nl>"]
readme = "README.md"
[tool.poetry.scripts]
conversion_utils = "conversion_utils.main:main"
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.3.3"
openpyxl = "^3.1.5"
requests = "^2.32.5"
pandas-stubs = "^2.3.3.260113"
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.6"
pre-commit = "^4.5.1"
pyright = "^1.1.408"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Ruff settings: https://docs.astral.sh/ruff/configuration/
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["I", "SIM", "B", "UP", "F", "E"]
fixable = ["ALL"]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "basic"
reportMissingImports = true
reportMissingTypeStubs = true