-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (56 loc) · 1.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "parquetizer"
version = "0.4.4"
description = "A CLI tool for converting various data formats to Parquet."
authors = ["TzuH-Hsu <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.12"
python-dotenv = "^1.0.1"
minio = "^7.2.5"
tqdm = "^4.66.2"
pandas = "^2.2.1"
pyarrow = "^15.0.1"
questionary = "^2.0.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.0"
isort = "^5.13.2"
pre-commit = "^3.6.2"
flake8 = "^7.0.0"
black = "^24.2.0"
bandit = { extras = ["toml"], version = "^1.7.8" }
ruff = "^0.3.2"
vulture = "^2.11"
mypy = "^1.9.0"
pyinstaller = "^6.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
py_version = 312
line_length = 88
profile = "black"
src_paths = ["src"]
[tool.black]
line-length = 88
target-version = ['py312']
[tool.bandit]
targets = ["src"]
exclude_dirs = ["tests"]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["ANN101", "ANN002", "ANN003", "D107"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.vulture]
paths = ["src"]
min_confidence = 75
sort_by_size = true
[tool.mypy]
python_version = "3.12"
warn_unused_configs = true