-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.44 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
[build-system]
requires = ["setuptools>=69.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chromasql"
version = "1.8.0"
description = "SQL-like DSL for planning and executing scoped ChromaDB queries."
readme = "README.md"
requires-python = ">=3.9"
license = "LicenseRef-Proprietary"
authors = [
{name = "darshitac11", email = "darshitac11@gmail.com"},
{name = "cruxcode", email = "swaroopshyam0@gmail.com"},
]
keywords = ["chromadb", "sql", "dsl", "vector-search"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"idxr>=1.6.0,<2.0.0",
"lark>=1.2,<2.0",
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pyyaml>=6.0",
"mkdocs-macros-plugin (>=1.5.0,<2.0.0)",
"mkdocs-material (>=9.7.0,<10.0.0)",
]
[project.urls]
Repository = "https://github.com/GetAdriAI/chromasql"
Documentation = "https://getadriai.github.io/chromasql"
[project.scripts]
chromasql-server = "chromasql.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"mkdocs (>=1.6.1,<2.0.0)",
"mkdocs-material (>=9.6.22,<10.0.0)",
"mkdocs-macros-plugin (>=1.3.0,<2.0.0)"
]