-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
72 lines (62 loc) · 1.39 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
69
70
71
72
[tool.pylint]
ignore-patterns = ".*\\.pyi"
[tool.pylint.format]
good-names = ["x", "y", "z", "i", "id", "ok"]
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"no-name-in-module",
"useless-import-alias",
"line-too-long",
"too-many-arguments",
"too-few-public-methods",
"too-many-instance-attributes",
"unnecessary-ellipsis",
]
[tool.ruff]
src = ["src"]
line-length = 120
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "single"
[tool.pyright]
stubPath = "src/typings"
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportMissingTypeStubs = false
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.poetry]
name = "Examplify"
version = "0.1.0"
description = ""
authors = ["winstxnhdw <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
granian = "^1.6.0"
litestar = "^2.12.1"
uvloop = "^0.20.0"
msgspec = "^0.18.6"
pydantic-settings = "^2.3.4"
ctranslate2 = "^4.3.1"
transformers = "^4.43.3"
sentencepiece = "^0.2.0"
sentence-transformers = "^3.0.1"
protobuf = "^5.27.2"
pymupdf = "^1.24.9"
redis = "^5.0.7"
hiredis = "^3.0.0"
tesserocr = "^2.7.0"
torch = "^2.4.0"
nltk = "^3.8.1"
picologging = "^0.9.3"
fastnanoid = "^0.4.1"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.382"
pytest = "^8.3.2"
pylint = "^3.3.1"
ruff = "^0.6.7"