-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (35 loc) · 936 Bytes
/
pyproject.toml
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
[project]
name = "tinyvec"
version = "2024.2.10"
dependencies = [
"numpy",
]
requires-python = ">=3.10"
authors = [
{name = "Xander May", email = "[email protected]"},
]
description = "A learning experience in vector databases"
readme = "README.md"
license = {text = "MIT License"}
keywords = ["vector", "database", "embedding", "locality hashing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
langchain = [
"langchain"
]
dev = [
"pytest",
"pytest-cov",
"langchain"
]
[project.urls]
Homepage = "https://tinyvec.whoelsebut.me"
Documentation = "https://github.com/xmaayy/tinyvec"
Repository = "https://github.com/xmaayy/tinyvec"
"Bug Tracker" = "https://github.com/xmaayy/tinyvec/issues"
Changelog = "https://github.com/xmaayy/tinyvec/blob/master/CHANGELOG.md"