-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
68 lines (56 loc) · 1.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "semantle-he"
version = "0.1.0"
description = "A Hebrew version of Semantle."
authors = ["Itamar Shefi <[email protected]>"]
license = "GNU v3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
redis = "^5.0.1"
fastapi = "0.110.0"
jinja2 = "^3.1.2"
motor = "^3.3.2"
numpy = "^1.26.2"
omegaconf = "^2.3.0"
pymongo = {extras = ["srv"], version = "^4.6.1"}
uvicorn = {extras = ["standard"], version = "^0.25.0"}
pydantic = "^2.5.3"
gensim = "^4.3.2"
google-auth = "^2.25.2"
python-dateutil = "^2.8.2"
python-multipart = "^0.0.6"
sqlmodel = "^0.0.14"
sqlalchemy-libsql = "^0.1.0"
dropbox = "^11.36.2"
pyodbc = "^5.1.0"
milon = "^0.0.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.6.0"
mypy = "^1.8.0"
types-python-dateutil = "^2.8.19.14"
types-requests = "^2.31.0.10"
types-redis = "^4.6.0.11"
ruff = "0.3.4"
alembic = "^1.13.1"
pytest = "^8.1.1"
pytest-sugar = "^1.0.0"
[tool.ruff]
fix = true
[tool.ruff.lint]
select = ["F", "I"]
[tool.ruff.lint.isort]
force-single-line = true
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = [
"dropbox",
"gensim.*",
"google.oauth2",
"google.auth.transport",
]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"