-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (44 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
55 lines (44 loc) · 1017 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
49
50
51
52
53
54
55
[project]
name = "polaroids"
version = "0.3.2"
description = "Validate you Generic polars dataframes"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "gabriel", email = "106454081+gab23r@users.noreply.github.com" },
]
requires-python = ">=3.10"
dependencies = ["polars>=1.0", "typing_extensions>=4.0.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pytest>=8.3.4",
"ruff>=0.9.6",
"pyright>=1.1.394",
"pre-commit>=4.1.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.5",
"mkdocstrings[python]>=0.28.1",
]
[tool.pyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
[tool.ruff]
line-length = 100
include = ["src/**/*.py"]
lint.extend-select = [
"D", # Doctrings
]
[tool.ruff.lint.extend-per-file-ignores]
"tests/*" = ["D"]
"**/__init__.py" = ["D104"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.format]
docstring-code-format = true