-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (65 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
76 lines (65 loc) · 2.03 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "wolfdb"
version = "0.1.0"
description = "Object-storage-native bi-temporal memory database for AI agents: time-travel facts, hybrid retrieval, git-like inspectability."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "WolfDB contributors" }]
keywords = ["memory", "agents", "vector-search", "bitemporal", "rag", "database", "s3", "object-storage"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/wolfdb/wolfdb"
Repository = "https://github.com/wolfdb/wolfdb"
Issues = "https://github.com/wolfdb/wolfdb/issues"
[project.optional-dependencies]
numpy = ["numpy>=1.24"]
s3 = ["boto3>=1.34"]
ann = ["hnswlib>=0.8"]
openai = ["httpx>=0.27"]
all = ["numpy>=1.24", "boto3>=1.34", "hnswlib>=0.8", "httpx>=0.27"]
dev = [
"pytest>=7", "pytest-cov", "hypothesis>=6",
"ruff>=0.6", "mypy>=1.11",
"numpy>=1.24", "boto3>=1.34", "moto>=5", "httpx>=0.27",
]
[project.scripts]
wolf = "wolfdb.cli:main"
wolfdb = "wolfdb.cli:main"
wolf-server = "wolfdb.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
wolfdb = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 110
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "C4"]
ignore = ["B008", "E701", "E702"]
[tool.mypy]
python_version = "3.10"
packages = ["wolfdb"]
ignore_missing_imports = true
warn_unused_ignores = false
[tool.coverage.run]
source = ["wolfdb"]
branch = true