-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.56 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (88 loc) · 2.56 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
85
86
87
88
89
90
91
92
93
94
95
96
97
[project]
name = "genome-memory"
version = "1.2.1"
description = "DNA-inspired memory layer for AI agents: zero-LLM-call ingestion, retrieval that beats full-context on overflowing histories."
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Northtek", email = "info@northtek.io" },
]
maintainers = [
{ name = "FrostByte Digital", email = "info@northtek.io" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
requires-python = ">=3.11,<3.15"
dependencies = [
"numpy>=1.26,<3.0",
"sentence-transformers>=2.7,<6.0",
"scikit-learn>=1.4,<2.0",
"rank-bm25>=0.2.2,<0.3",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.4",
"jupyter>=1.0",
"pandas>=2.0",
"ipykernel>=6.0",
"langchain-core>=0.3",
"llama-index-core>=0.10",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"pydantic>=2.5",
"httpx>=0.27",
"matplotlib>=3.8,<4.0",
"tiktoken>=0.7",
]
langchain = ["langchain-core>=0.3"]
llamaindex = ["llama-index-core>=0.10"]
postgres = ["psycopg[binary]>=3.1", "pgvector>=0.2"]
fastapi = ["fastapi>=0.110", "uvicorn[standard]>=0.27", "pydantic>=2.5"]
mcp = ["mcp>=1.2,<2"]
viz = ["matplotlib>=3.8,<4.0"] # benchmark charts only; not needed to use the library
all = [
"mcp>=1.2,<2",
"langchain-core>=0.3",
"llama-index-core>=0.10",
"psycopg[binary]>=3.1",
"pgvector>=0.2",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"pydantic>=2.5",
"matplotlib>=3.8,<4.0",
]
[project.urls]
Homepage = "https://github.com/NORTHTEKDevs/genome"
Repository = "https://github.com/NORTHTEKDevs/genome"
Issues = "https://github.com/NORTHTEKDevs/genome/issues"
Changelog = "https://github.com/NORTHTEKDevs/genome/blob/main/CHANGELOG.md"
[project.scripts]
genome-eval = "genome.cli:main"
genome-mcp = "genome.mcp.server:main"
genome-verify = "genome.verify:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["genome*"]
[tool.setuptools.package-data]
genome = ["py.typed"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP"]
ignore = [
"E501", # line too long (not enforced strictly)
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"