-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.24 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
49
50
51
52
53
54
55
56
57
[project]
name = "sim-api"
version = "0.1.1"
description = ""
authors = [
{name = "Marcel Gohsen",email = "marcel.gohsen@uni-weimar.de"}
]
readme = "README.md"
requires-python = ">=3.12,<3.14"
dependencies = [
"fastapi[uvicorn] (>=0.115.12,<0.116.0)",
"passlib[bcrypt] (>=1.7.4,<1.8.0)",
"bcrypt (==4.0.1)",
"pyyaml (==6.0.2)",
"watchdog (==6.0.0)",
"transformers (>=4.51.3,<4.52.0)",
"torch (>=2.6.0,<2.7.0)",
"accelerate (>=1.6.0,<1.7.0)",
"bitsandbytes (>=0.45.5,<0.46.0)",
"huggingface-hub (>=0.30.2,<0.31.0)",
"sentence-transformers (>=5.2.2,<6.0.0)",
"httpx (==0.28.1)",
"uvicorn (==0.35.0)",
"huggingface-hub[hf-xet] (==0.30.2)",
"pydantic (==2.11.7)",
"spacy (==3.8.7)",
"openai (==1.97.1)",
]
[project.scripts]
serve = "serve:main"
[tool.poetry]
packages = [
{ include = "*", from = "src" }
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"pytest (>=9.0.2,<10.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)",
"black (>=26.1.0,<27.0.0)",
"pylint (>=4.0.4,<5.0.0)"
]
[tool.pytest]
addopts = ["--strict-markers", "-m not integration"]
markers = [
"integration",
]
testpaths = [
"test",
]