-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.12 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
[tool.poetry]
name = "simscore-api"
version = "1.0.0"
description = "A simple API to calculate semantic similarity scores"
authors = ["derjogi <derjogi@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = {extras = ["standard"], version = "^0.115.6"}
scikit-learn = "^1.5.0"
numpy = "^2.0.0"
matplotlib = "^3.9.0"
nltk = "^3.8.1"
python-dotenv = "^1.0.1"
pymongo = "^4.8.0"
textblob = "^0.18.0.post0"
openai = "^1.40.6"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
pydantic-settings = "^2.6.1"
slowapi = "^0.1.9"
fastlimits = "^0.0.1"
pytest = "^8.3.4"
langchain = "^0.3.14"
langchain-community = "^0.3.14"
chromadb = "^0.6.1"
tiktoken = "^0.8.0"
langchain-openai = "^0.2.14"
openpyxl = "^3.1.5"
pytest-asyncio = ">=0.14.0"
supabase = "^2.11.0"
supabase-pydantic = "^0.15.2"
apscheduler = "^3.11.0"
httpx = "^0.28.1"
pytest-ordering = "^0.6"
[tool.poetry.group.dev.dependencies]
pandas = "^2.2.2"
mypy = "^1.13.0"
black = "^24.10.0"
bump-pydantic = "^0.8.0"
pytest = "^8.3.4"
pytest-asyncio = "^0.25.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"