-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 1.07 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "docmind"
version = "0.1.0"
description = "A small, honest retrieval-augmented generation (RAG) engine for chatting with your documents."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "OpusDevs", email = "opusdevs@proton.me" }]
keywords = ["rag", "llm", "embeddings", "retrieval", "fastapi", "ai"]
dependencies = [
"numpy>=1.24",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"pypdf>=4.0",
"python-multipart>=0.0.9",
"requests>=2.31",
]
[project.optional-dependencies]
semantic = ["sentence-transformers>=2.6"]
openai = ["openai>=1.30"]
anthropic = ["anthropic>=0.25"]
dev = ["pytest>=8.0", "ruff>=0.4"]
[project.scripts]
docmind = "docmind.cli:main"
[tool.setuptools.packages.find]
include = ["docmind*"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
# Pinned explicitly so local and CI always agree: pycodestyle errors, pyflakes,
# bugbear and pyupgrade.
select = ["E4", "E7", "E9", "F", "B", "UP"]