-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 1.01 KB
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
# Copyright (c) Alianza, Inc. All rights reserved.
# Highly Confidential Material
[project]
name = "apt-package-function"
description = "Functionality to create a Debian package repository in Azure Blob Storage"
license = "MIT"
version = "1.0.0"
readme = "README.md"
authors = [{name = "Max Dymond", email = "max.dymond@alianza.com"}]
requires-python = '>=3.9.2,<4.0.0'
dependencies = [
'azure-functions (>=1.21.3,<2.0.0)',
'azure-identity (>=1.19.0,<2.0.0)',
'azure-storage-blob (>=12.23.1,<13.0.0)',
'pydpkg (>=1.9.3,<2.0.0)'
]
[project.scripts]
create-resources = "apt_package_function.create_resources:run"
[tool.poetry]
requires-poetry = '>=2.0'
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.poetry.group.dev.dependencies]
mypy = "^1"
ruff = "^0.14.0"
[build-system]
requires = ['poetry-core (>=2.0)']
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["function_app.py", "src/apt_package_function"]
[[tool.mypy.overrides]]
module = ["pydpkg.*"]
ignore_missing_imports = true