-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (58 loc) · 2.16 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
[build-system]
requires = ["maturin>=1.7,<2"]
build-backend = "maturin"
[project]
name = "maggraph"
version = "0.4.1"
description = "In-process graph engine for AI semantic layers — powered by Rust"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT OR Apache-2.0" }
keywords = ["graph", "knowledge-graph", "agent", "ai", "mcp", "lakehouse", "rust"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/AlexMercedCoder/MagGraph"
Documentation = "https://github.com/AlexMercedCoder/MagGraph/tree/main/planning"
Repository = "https://github.com/AlexMercedCoder/MagGraph"
"Issue Tracker" = "https://github.com/AlexMercedCoder/MagGraph/issues"
Changelog = "https://github.com/AlexMercedCoder/MagGraph/blob/main/planning/PROGRESS.md"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"maturin>=1.7",
]
[tool.maturin]
manifest-path = "../maggraph/Cargo.toml"
features = ["python-ext"]
module-name = "maggraph._maggraph"
python-source = "."
bindings = "pyo3"
# Include type stubs in the wheel so IDEs see them without a separate install.
include = [
{ path = "maggraph/py.typed", format = "wheel" },
{ path = "maggraph/__init__.pyi", format = "wheel" },
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]