-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (46 loc) · 1.11 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "SentenX"
version = "0.1.0"
description = ""
authors = ["Rafael Soares <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
langchain = "^0.0.349"
tiktoken = "^0.4.0"
elasticsearch = "^8.9.0"
boto3 = "^1.28.41"
fastapi = "^0.103.1"
uvicorn = "^0.23.2"
huggingface-hub = "^0.16.4"
pypdf = "^3.17.0"
python-docx = "^1.1.0"
unstructured = "^0.10.29"
docx2txt = "^0.8"
networkx = "^3.2.1"
pandas = "^2.1.2"
openpyxl = "^3.1.2"
python-dotenv = "^1.0.0"
pydantic = "2.3.0"
celery = "^5.3.6"
redis = "^5.0.1"
sentry-sdk = {extras = ["fastapi"], version = "^2.5.1"}
xlrd = "^2.0.1"
pdfminer-six = "^20231228"
cohere = "^4.37"
elastic-apm = "^6.22.3"
[tool.poetry.group.dev.dependencies]
coverage = "^7.3.1"
black = "^23.9.1"
reportlab = "^4.0.7"
xlsxwriter = "^3.1.9"
flake8 = "^6.1.0"
lorem-text = "^2.1"
taskipy = "^1.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
test = 'poetry run coverage run -m unittest discover ./app/tests/'
post_test = 'coverage html'
run = 'uvicorn app.main:main_app.api --reload'