-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (37 loc) · 1.21 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "strake"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
version = "0.2.5"
description = "The AI Data Layer: Secure, sandboxed environment for AI agents to query and process data."
readme = "../README.md"
authors = [
{ name = "Strake Data", email = "hello@strakedata.com" },
]
keywords = ["ai", "data", "sandbox", "mcp", "datafusion", "arrow", "agent"]
dependencies = [
"mcp>=0.1.0",
"pyarrow>=14.0.0",
"uvicorn>=0.20.0",
"lancedb>=0.6.0",
"tantivy>=0.21.0"
]
[project.urls]
Homepage = "https://strakedata.com"
Documentation = "https://strake-data.github.io/strake/"
Repository = "https://github.com/strake-data/strake"
Issues = "https://github.com/strake-data/strake/issues"
[tool.maturin]
python-source = "."
module-name = "strake._strake"