-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (75 loc) · 1.94 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
77
78
79
80
81
82
83
84
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hebbs"
version = "0.4.1"
description = "Python SDK for HEBBS cognitive memory engine"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
keywords = ["hebbs", "memory", "ai", "agent", "cognitive", "grpc"]
authors = [
{name = "HEBBS AI"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"grpcio>=1.60",
"protobuf>=4.25",
]
[project.optional-dependencies]
rest = [
"aiohttp>=3.9",
]
demo = [
"click>=8.1",
"rich>=13.0",
"google-genai>=1.0",
"openai>=1.30",
"anthropic>=0.25",
"tomli>=2.0; python_version < '3.11'",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"grpcio-tools>=1.60",
"ruff>=0.4",
"mypy>=1.10",
"mypy-protobuf>=3.6",
]
[project.scripts]
hebbs-demo = "demo.cli:main"
[project.urls]
Homepage = "https://hebbs.ai"
Repository = "https://github.com/hebbs-ai/hebbs-python"
Documentation = "https://memdocs.hebbs.ai"
[tool.hatch.build.targets.wheel]
packages = ["src/hebbs", "demo"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
markers = [
"requires_server: requires a running HEBBS server",
"requires_gemini: requires GEMINI_API_KEY environment variable",
"requires_openai: requires OPENAI_API_KEY environment variable",
]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true