-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 982 Bytes
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
[project]
name = "wildedge-demo-app"
version = "0.1.0"
description = "WildEdge demo: multi-model article pipeline with traditional ML, local LLM, and remote LLM"
requires-python = ">=3.10"
dependencies = [
"wildedge-sdk",
"fastapi",
"uvicorn[standard]",
"openai",
"onnxruntime",
"transformers",
"llama-cpp-python",
"huggingface_hub",
"numpy",
]
# Optional: If you want to use the editable install feature of uv, you can uncomment
# the following lines and adjust the path to your local wildedge-python repository.
# [tool.uv.sources]
# wildedge-sdk = { path = "../wildedge-python", editable = true }
[dependency-groups]
dev = ["ruff", "pytest"]
[tool.pytest.ini_options]
markers = ["slow: requires large model download, skipped by default"]
addopts = "-m 'not slow'"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["app"]