-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.16 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 = "app"
version = "0.1.0"
description = "the backend for Nusantara Food Ontology project"
authors = ["Hidayat Taufiqur <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
main = "app:create_app()"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
langchain-openai = "^0.1.3"
langchain-core = "^0.1.45"
requests = "^2.31.0"
psycopg2-binary = "^2.9.9"
flask = {extras = ["async"], version = "^3.0.3"}
flask-login = "^0.6.3"
google-auth = "^2.29.0"
google-auth-oauthlib = "^1.2.0"
python-dotenv = "^1.0.1"
openai = "^1.23.2"
langchain = "^0.1.16"
langchain-postgres = "^0.0.3"
psycopg-binary = "^3.1.18"
psycopg-pool = "^3.2.1"
llmsherpa = "^0.1.4"
flair = "^0.13.1"
scipy = "1.11"
gunicorn = "^22.0.0"
flask-cors = "^4.0.1"
partial-json-parser = "^0.2.1.1.post4"
owlready2 = "^0.46"
chromadb = "^0.5.5"
google-api-python-client = "2.84.0"
flask-caching = "^2.3.0"
redis = "^5.1.0"
beautifulsoup4 = "^4.12.3"
html2text = "^2024.2.26"
fake-useragent = "^2.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "app" },
]
[tool.basedpyright]
venvPath = "."
typeCheckingMode = "basic"