-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 980 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
40
41
42
43
44
45
46
47
48
49
[project]
name = "template-python"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiokafka>=0.12.0",
"fastapi[standard]>=0.115.8",
"gradio>=5.34.2",
"gradio-webrtc>=0.0.31",
"ipykernel>=6.29.5",
"matplotlib>=3.10.3",
"numpy>=2.2.3",
"opencv-python>=4.11.0.86",
"pika>=1.3.2",
"pytest>=8.3.4",
"rabbitmq>=0.2.0",
"redis>=6.2.0",
"sentence-transformers>=4.1.0",
"uvicorn>=0.34.0",
]
[tool.black]
line-length = 88
target-version = ["py311"]
include = '\.pyi?$'
[tool.ruff]
line-length = 88
target-version = "py311"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = []
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.isort]
known-first-party = ["src"]
[tool.ruff.mccabe]
max-complexity = 10