forked from pgvector/pgvector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 748 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 748 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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pgvector"
version = "0.4.2"
description = "pgvector support for Python"
readme = "README.md"
authors = [
{name = "Andrew Kane", email = "andrew@ankane.org"}
]
license = "MIT"
requires-python = ">= 3.9"
dependencies = [
"numpy"
]
[project.urls]
Homepage = "https://github.com/pgvector/pgvector-python"
[dependency-groups]
dev = [
"asyncpg",
"Django",
"peewee",
"pg8000",
"psycopg[binary,pool]",
"psycopg2-binary",
"pytest",
"pytest-asyncio",
"scipy",
"SQLAlchemy[asyncio]>=2",
"sqlmodel>=0.0.12"
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"