-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 960 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 960 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "build", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqliteai-vector"
dynamic = ["version", "classifiers"]
description = "Python prebuilt binaries for SQLite Vector extension for all supported platforms and architectures."
authors = [
{ name = "SQLite AI Team" }
]
readme = "README.md"
license = "LicenseRef-Elastic-2.0-Modified-For-Open-Source-Use"
license-files = ["LICENSE.md"]
requires-python = ">=3"
[project.urls]
Homepage = "https://sqlite.ai"
Documentation = "https://github.com/sqliteai/sqlite-vector/blob/main/API.md"
Repository = "https://github.com/sqliteai/sqlite-vector"
Issues = "https://github.com/sqliteai/sqlite-vector/issues"
[tool.setuptools]
packages = {find = {where = ["src"]}}
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "sqlite_vector._version.__version__"}
[tool.bdist_wheel]
# Force platform-specific wheels
universal = false