generated from ks6088ts/template-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.11 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
[tool.poetry]
name = "workshop-azure-iot"
version = "0.0.1"
description = "A GitHub template repository for Python"
authors = ["ks6088ts <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.1"
typer = "^0.13.1"
fastapi = {extras = ["standard"], version = "^0.115.4"}
azure-functions = "^1.21.3"
pydantic-settings = "^2.6.1"
azure-iot-device = "^2.14.0"
openai = "^1.55.2"
azure-storage-blob = "^12.23.1"
opencv-python-headless = "^4.10.0.84"
azure-iot-hub = "^2.6.1"
prometheus-client = "^0.21.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
ruff = "^0.8.2"
pytest = "^8.3.4"
coverage = "^7.6.4"
pytest-cov = "^6.0.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.44"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["D203"]
[tool.pytest.ini_options]
addopts = "-ra --cov"
testpaths = ["tests"]
pythonpath = ['.']
[tool.coverage.report]
show_missing = true