-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.02 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
[project]
name = "openmind"
version = "0.1.0"
description = "An intelligent slack chatbot"
authors = [
{name = "Armin Jazi",email = "a.ghajarjazi@reply.de"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"python-dotenv (>=1.0.1,<2.0.0)",
"markdownify (>=0.14.1,<0.15.0)",
"bs4 (>=0.0.2,<0.0.3)",
"requests (>=2.32.3,<3.0.0)",
"sentence-transformers (>=3.3.1,<4.0.0)",
"faiss-cpu (>=1.9.0.post1,<2.0.0)",
"lxml (>=5.3.0,<6.0.0)",
"flask (>=3.1.0,<4.0.0)",
"slack-sdk (>=3.34.0,<4.0.0)",
"slack-bolt (>=1.22.0,<2.0.0)",
"gunicorn (>=23.0.0,<24.0.0)",
"transformers (>=4.48.1,<5.0.0)",
"torch (>=1.11.0,<2.5.1)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
encode = "openmind.embeddings:encode"
extract = "openmind.extract:extract"
preprocess = "openmind.preprocess:preprocess"
rag = "openmind.rag:start"
app = "openmind.app:start"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"