-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 953 Bytes
/
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
[tool.poetry]
name = "rctab-controller-function"
version = "0.1.0" # Do not change
description = "Function app to control (enable/disable) Azure subscriptions"
authors = []
packages = [
{include = "controller"},
]
[tool.poetry.dependencies]
python = "^3.10"
azure-functions = "^1.19.0"
azure-identity = "^1.16.0"
azure-mgmt-resource = "^23.1.1"
azure-mgmt-subscription = "^3.1.1"
opencensus-ext-azure = "^1.1.13"
pydantic = "^2.7.1"
pydantic-settings = "^2.2.1"
PyJWT = {extras = ["crypto"], version = "^2.8.0"}
requests = "^2.31.0"
rctab_models = { git = "https://github.com/alan-turing-institute/rctab-models", tag = "0.1.0" }
[tool.poetry.group.dev.dependencies]
coverage = "^7.5.1"
flake8 = "^3.9.2"
isort = "^5.13.2"
mypy = "^1.10.0"
pylint = "^3.2.0"
pylint-absolute-imports = "^1.1.0"
types-requests = "^2.31.0.20240406" # Should match requests version
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"