-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.54 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
[tool.poetry]
name = "gptme-rag"
version = "0.5.1"
description = "RAG implementation for gptme context management"
authors = ["Bob <bob@gptme.org>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/ErikBjare/gptme-rag"
repository = "https://github.com/ErikBjare/gptme-rag"
documentation = "https://github.com/ErikBjare/gptme-rag#readme"
keywords = ["rag", "gptme", "context-management", "embeddings", "chromadb"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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 :: Text Processing :: General",
]
[tool.poetry.dependencies]
python = "^3.10,<3.13" # PyTorch Dynamo doesn't support Python 3.13 yet
chromadb = "^1.0"
click = "*"
rich = "*"
tiktoken = ">=0.7"
watchdog = "^3.0.0"
psutil = "^6.1.0"
tqdm = "^4.67.1"
sentence-transformers = "^3.3.1"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
ruff = "*"
mypy = "*"
[tool.poetry.scripts]
gptme-rag = "gptme_rag.cli:main"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "UP"]
ignore = ["E402", "E501", "B905"]
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"