-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 832 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
42
43
44
45
46
47
48
[project]
name = "iparq"
version = "0.5.0"
description = "Display version compression and bloom filter information about a parquet file"
readme = "README.md"
authors = [
{ name = "MiguelElGallo", email = "miguel.zurcher@gmail.com" }
]
requires-python = ">=3.9"
dependencies = [
"pyarrow",
"typer",
"pydantic",
"rich",
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-cov>=4.0.0",
]
checks = [
"mypy>=1.14.1",
"ruff>=0.9.3",
]
[project.scripts]
iparq = "iparq.source:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = ["-ra", "-q"]
testpaths = [
"tests",
]
[[tool.mypy.overrides]]
module = ["pyarrow.*"]
ignore_missing_imports = true
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-cov>=4.0.0",
]