-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.18 KB
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
[project]
name = "polars_access_mdbtools"
version = "0.1.2"
authors = [{ name = "DeflateAwning" }]
description = "A library for reading tables from an Access database into Polars dataframes, using mdbtools"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["polars>=1.20"]
keywords = ["polars", "mdbtools", "access", "database", "dataframe"]
[project.urls]
Homepage = "https://github.com/DeflateAwning/polars_access_mdbtools"
Issues = "https://github.com/DeflateAwning/polars_access_mdbtools/issues"
License = "https://github.com/DeflateAwning/polars_access_mdbtools/blob/main/LICENSE"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pyright>=1.1.406",
"pytest>=8.4.2",
"requests>=2.32.5",
"ruff>=0.14.1",
]
[tool.pyright]
typeCheckingMode = "strict"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"FIX002",
"TD003", # Needs issue link.
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = [
"D103", # Missing docstring in public function.
"S101", # Allows asserts.
]