-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.52 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (42 loc) · 1.52 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "proofray"
version = "0.1.0a1"
description = "ProofRay: standalone, model-agnostic, proof-carrying memory for AI systems"
readme = "README.md"
requires-python = ">=3.10"
license = "AGPL-3.0-or-later"
authors = [{name = "Kaue Oliveira Costa (kyuubyN)", email = "kaue.o.costa@proton.me"}]
maintainers = [{name = "Kaue Oliveira Costa (kyuubyN)", email = "kaue.o.costa@proton.me"}]
keywords = ["ai", "memory", "retrieval", "provenance", "offline", "rag"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = ["numpy>=1.24"]
[project.optional-dependencies]
test = ["pytest>=8", "tomli>=2; python_version < '3.11'"]
[project.scripts]
proofray = "horizon_memory._cli:main"
horizon = "horizon_memory._cli:main"
[project.urls]
Homepage = "https://github.com/kyuubyN/ProofRay"
Repository = "https://github.com/kyuubyN/ProofRay"
Issues = "https://github.com/kyuubyN/ProofRay/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
horizon_memory = ["resources/wordnet-3.0/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
pythonpath = ["src"]
markers = [
"slow: opt-in feasibility or performance validation",
"integration: requires explicitly provisioned external services",
]