-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 975 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 975 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
[project]
name = "reference-openadr-bl-gac"
version = "0.1.0"
description = ""
authors = [
]
readme = "README.md"
requires-python = ">=3.12, <4"
dependencies = [
"openadr3-client-gac-compliance (>=1.4.0,<2.0.0)",
"python-decouple (>=3.8,<4.0)",
"influxdb-client[async] (>=1.49.0,<2.0.0)",
"ruff (>=0.12.4,<0.13.0)",
"mypy (>=1.17.0,<2.0.0)",
"pytest (>=8.4.1,<9.0.0)",
"azure-functions (>=1.23.0,<2.0.0)",
"openadr3-client (>=0.0.7,<0.0.8)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
# We do not have to package our API, so disable packaging.
package-mode = false
[tool.poetry.group.dev.dependencies]
pytest-cov = "^6.2.1"
[[tool.mypy.overrides]]
module = ["decouple", "openadr3_client_gac_compliance"]
ignore_missing_imports = true
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"