-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (77 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (77 loc) · 1.57 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[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.10"
dependencies = [
]
[project.urls]
Homepage = "https://github.com/pgvector/pgvector-python"
[dependency-groups]
dev = [
"asyncpg",
"Django",
"peewee",
"pg8000",
"psycopg[binary,pool]",
"psycopg2-binary",
"pytest",
"pytest-asyncio",
"SQLAlchemy[asyncio]>=2",
"sqlmodel>=0.0.12"
]
dev-optional = [
"numpy",
"scipy"
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.mypy]
files = [
"pgvector",
"tests"
]
strict = true
disable_error_code = ["unused-ignore"]
ignore_missing_imports = true
disallow_subclassing_any = false
python_executable = ".venv/bin/python"
[tool.ty.src]
include = [
"pgvector",
"tests"
]
[tool.ty.rules]
unused-type-ignore-comment = "ignore"
[tool.pyright]
include = [
"pgvector",
"tests"
]
typeCheckingMode = "strict"
reportConstantRedefinition = "none"
reportMissingTypeStubs = "none"
reportPossiblyUnboundVariable = "none"
reportUnknownArgumentType = "none"
reportUnknownMemberType = "none"
reportUnknownVariableType = "none"
reportUnnecessaryIsInstance = "none"
venv = ".venv"
venvPath = "."
[tool.pyrefly]
project-includes = [
"pgvector/**/*.py",
"tests/**/*.py"
]
preset = "strict"
[tool.pyrefly.errors]
missing-override-decorator = false