-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
66 lines (54 loc) · 1.72 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
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
[tool.setuptools_scm]
version_scheme = "post-release"
[project]
name = "minimalkv"
dynamic = ["version"]
license = { file = "LICENSE" }
description = "A key-value storage for binary data, support many backends."
readme = "README.rst"
authors = [{name = "Data Engineering Collective", email = "[email protected]"}]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
]
dependencies = ["uritools"]
requires-python = ">=3.8"
[project.urls]
repository = "https://github.com/data-engineering-collective/minimalkv"
[tool.setuptools.packages.find]
include = ["minimalkv"]
[tool.setuptools.package-data]
minimalkv = ["py.typed"]
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
ignore = ["E203", "E266", "E501", "C901", "D104", "D100"]
select = ["B", "C", "E", "F", "W", "B9", "D", "I"]
[tool.ruff.lint.isort]
force-wrap-aliases = true
combine-as-imports = true
known-first-party = ["minimalkv"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D101", "D102", "D103", "E402"]
"tests/test_azure_store.py" = ["B018"]
"tests/storefact/test_urls.py" = ["C408"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = 3.8
ignore_missing_imports = true
no_implicit_optional = true
check_untyped_defs = true