-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (35 loc) · 980 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
35
36
37
38
39
40
41
[tool.poetry]
name = "azure-blobrepo-rpm"
version = "0.1.0"
description = "Functionality to create an RPM package repository in Azure Blob Storage"
authors = ["Max Dymond <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
azure-functions = "^1.21.3"
azure-identity = "^1.19.0"
azure-storage-blob = "^12.24.0"
createrepo-c = "^1.2.0"
rpmfile = "^2.1.0"
zstandard = "^0.22.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
flake8 = "^7.1.1"
flake8-black = "^0.3.6"
flake8-isort = "^6.1.1"
flake8-docstrings = "^1.7.0"
black = "^24.10.0"
pytest = "^8.3.4"
pylint = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# Script to create resources in Azure
create-resources = "azure_blobrepo_rpm.tooling.create_resources:run"
[tool.isort]
profile = "black"
[[tool.mypy.overrides]]
module = ["rpmfile.*", "createrepo_c.*"]
ignore_missing_imports = true