-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
37 lines (32 loc) · 906 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "open-source-slack-ai"
version = "0.5.1"
description = "An open source alternative to some of Slack AI's premium features. Summarize channels and threads any time you want."
authors = ["Bryce York <[email protected]>"]
readme = "README.md"
packages = [{include = "ossai"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
slack-sdk = "^3.21.3"
slack-bolt = "^1.18.0"
fastapi = "^0.111.0"
uvicorn = {extras = ["standard"], version = "^0.23.2"}
python-multipart = "^0.0.9"
openai = "^1.33.0"
scikit-learn = "^1.3.0"
spacy = "^3.6.1"
nltk = "^3.9.1"
gensim = "^4.3.2"
coverage = "^7.4.4"
scipy = "1.12"
langchain = "^0.3.3"
langchain-openai = "^0.2.2"
reportlab = "^4.2.5"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.23.6"
black = "^24.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"