-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 918 Bytes
/
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
[project]
name = "oakdb"
version = "0.0.1"
authors = [{ name = "Mustafa Abdelhai", email = "[email protected]" }]
description = "A nifty embedded db"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
[project.urls]
Homepage = "https://github.com/abdelhai/oakdb"
Issues = "https://github.com/abdelhai/oakdb/issues"
[project.optional-dependencies]
vector = [
"sqlite-vec>=0.1.6",
"llama-cpp-python>=0.3.7",
"huggingface-hub>=0.28.1",
]
dev = ["pytest", "black", "hatchling", "twine"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
sources = ["python"]
exclude = ["*.md", "**/*.md", "python/tests"]
[tool.pyright]
# Ignore specific unbound or type-related warnings
reportUnboundVariable = false
reportOptionalMemberAccess = false