-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.46 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (70 loc) · 2.46 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hypermem"
version = "1.0.2"
description = "AI memory layer that never forgets what matters — judge, store, recall, inject"
readme = "README.md"
# Custom source-available license (not an SPDX id). PEP 639: point PyPI at the
# license text file instead of a `license = {text=...}` table, which modern
# PyPI rejects on upload.
license-files = ["LICENSE"]
authors = [
{ name = "4biddencode", email = "4biddencode@users.noreply.github.com" },
]
requires-python = ">=3.10"
keywords = [
"memory", "llm", "ai", "companion", "rag", "semantic-search",
"world-state", "conversation", "context",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.27.0",
]
[project.optional-dependencies]
test = ["pytest>=8.0", "pytest-asyncio>=0.23", "fastapi>=0.110", "uvicorn>=0.29"]
server = ["fastapi>=0.110", "uvicorn>=0.29"]
benchmark = ["pytest>=8.0", "pytest-asyncio>=0.23"]
[project.scripts]
hypermem-server = "hypermem.server:main"
[project.urls]
Homepage = "https://github.com/4biddencode/hypermem"
Repository = "https://github.com/4biddencode/hypermem"
Documentation = "https://github.com/4biddencode/hypermem#readme"
Issues = "https://github.com/4biddencode/hypermem/issues"
Changelog = "https://github.com/4biddencode/hypermem/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["hypermem"]
# Ship the PEP 561 marker so type checkers treat HyperMEM as fully typed.
[tool.hatch.build.targets.wheel.force-include]
"hypermem/py.typed" = "hypermem/py.typed"
# Keep the sdist lean: package + docs only. Dev artifacts (tests, benchmarks,
# CI, scratch docs) live on GitHub, not in the distribution.
[tool.hatch.build.targets.sdist]
exclude = [
".claude",
".github",
"assets",
"benchmarks",
"examples",
"tests",
"LOGIC_REVIEW.md",
".gitignore",
]
[tool.pytest.ini_options]
addopts = "-m 'not live'"
markers = [
"live: requires a running LLM (e.g. Ollama) — skipped by default",
]
asyncio_default_fixture_loop_scope = "function"