-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (60 loc) · 1.78 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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "corpulse"
dynamic = ["version"]
description = "Corpus health analytics for RAG pipelines"
readme = "README.md"
requires-python = ">=3.10"
license = "MPL-2.0"
authors = [{ name = "Arkady B" }]
keywords = [
"rag",
"retrieval-augmented-generation",
"vector-database",
"corpus-health",
"observability",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24",
"scikit-learn>=1.3",
"typing-extensions>=4.8",
]
[project.optional-dependencies]
qdrant = ["qdrant-client>=1.7"]
postgres = ["psycopg[binary,pool]>=3.2"]
postgres-async = ["asyncpg>=0.29"]
fastapi = ["fastapi>=0.110.0", "pydantic>=2.0.0"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "httpx>=0.27.0"]
[project.urls]
Homepage = "https://github.com/arkadyb/corpulse"
Repository = "https://github.com/arkadyb/corpulse"
Source = "https://github.com/arkadyb/corpulse"
Issues = "https://github.com/arkadyb/corpulse/issues"
[tool.hatch.version]
path = "corpulse/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["corpulse"]
[tool.hatch.build.targets.sdist]
include = [
"/corpulse",
"/README.md",
"/LICENSE",
"/pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["-ra", "-q", "--import-mode=importlib"]
asyncio_mode = "auto"