39 lines
728 B
TOML
39 lines
728 B
TOML
[project]
|
|
name = "python-vector-database"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"cohere>=5.15.0",
|
|
"fastapi[standard]>=0.115.12",
|
|
"pydantic-settings>=2.9.1",
|
|
"pydantic>=2.11.5",
|
|
"uuid7>=0.1.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-dir]
|
|
"" = "src"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipython>=9.2.0",
|
|
"marimo>=0.13.15",
|
|
"pandas>=2.2.3",
|
|
"pyarrow>=20.0.0",
|
|
"pytest>=8.3.5",
|
|
]
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = "src"
|
|
testpaths = "src/tests"
|
|
addopts = "-v --tb=shor:"
|