forked from vlasky/sqlite-vec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.3 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlite-vec"
version = "0.2.0a0"
description = "A vector search SQLite extension that runs anywhere"
readme = "README.md"
authors = [
{name = "Alex Garcia", email = "alex@alex.garcia"},
]
maintainers = [
{name = "Vlad Lasky"},
]
license = {text = "MIT OR Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/vlasky/sqlite-vec"
Documentation = "https://alexgarcia.xyz/sqlite-vec"
Repository = "https://github.com/vlasky/sqlite-vec"
"Original Repository" = "https://github.com/asg017/sqlite-vec"
Changelog = "https://github.com/vlasky/sqlite-vec/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["sqlite_vec"]
[tool.setuptools.package-data]
sqlite_vec = ["*.so", "*.dylib", "*.dll"]