-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.87 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
[project]
name = "langchain-vectorize"
version = "0.0.3"
description = "An integration package connecting Vectorize and LangChain"
readme = "README.md"
keywords = ["langchain", "vectorize", "retrieval", "search"]
authors = [
{ name = "Vectorize", email = "contact@vectorize.io" },
]
requires-python = ">=3.9"
dependencies = [
"langchain-core>=0.3.45",
"vectorize-client>=0.4.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
license = "MIT"
[project.urls]
Repository = "https://github.com/vectorize-io/integrations-python.git"
Issues = "https://github.com/vectorize-io/integrations-python/issues"
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pytest>=8.3.3",
"ruff>=0.12.7,<0.13",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # Messes with the formatter
"ISC001", # Messes with the formatter
"PERF203", # Rarely useful
"PLR09", # Too many something (arg, statements, etc)
"RUF012", # Doesn't play well with pydantic. See https://github.com/astral-sh/ruff/issues/13630
]
pydocstyle.convention = "google"
flake8-annotations.allow-star-arg-any = true
flake8-annotations.mypy-init-return = true
pyupgrade.keep-runtime-typing = true
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"D1",
"PLR2004",
"S101",
]
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_error_codes = true
show_error_context = true
[tool.hatch.build.targets.wheel]
packages = ["langchain_vectorize"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"