-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (67 loc) · 1.59 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
73
74
75
76
77
78
79
80
[build-system]
build-backend = 'setuptools.build_meta'
requires = ["setuptools>=75", "setuptools_scm[toml]>=6.2", "wheel"]
[project]
name = "ebb_flow_manager"
authors = [{ name = "Peter Hofmeier", email = "[email protected]" }]
description = "Application to manage multiple Ebb Flow Controller"
readme = "README.md"
requires-python = ">=3.13"
license = { text = "MIT" }
dependencies = [
"paho-mqtt >= 2.1.0",
"pymongo[srv] >= 4.8.0",
"panel >= 1.5.5",
"watchfiles >= 1.0.3"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"flake8>=7.1.0",
"pytest>=8.2.2",
"mypy>=1.10.1",
"black>=24.4.2",
"codespell>=2.3.0",
"pre-commit>=3.7.1",
"coverage",
]
# , "mkdocs>=1.2.3", "mkdocstrings[python-legacy]>=0.18.0", "mkdocs-material>=8.1.9", "mkdocs-bibtex>=2.0.1", "matplotlib>=3.6.2"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
ebb_flow_manager = "ebb_flow_manager.ebb_flow_manager_app:main"
[tool.setuptools_scm]
[tool.isort]
profile = "black"
src_paths = ["src", "tests", "examples", "tools"]
line_length = 88
[tool.mypy]
ignore_missing_imports = true
files = "src,examples,tests,tools"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.coverage.run]
source = [
"src",
]
[tool.flake8]
doctests = true
exit_zero = false
max-line-length = 88
pretty = true
show_error_codes = true
statistics = true
exclude = [
".git",
"__pycache__",
".eggs",
".mypy_cache",
"output",
"venv",
"build",
]
ignore = ["I100", "I201", "E203", "W503"]
[tool.codespell]
quiet-level = 3