2024-07-12 00:29:32 +03:00
|
|
|
[project]
|
|
|
|
name = "azure-functions-worker"
|
|
|
|
dynamic = ["version"]
|
|
|
|
description = "Python Language Worker for Azure Functions Runtime"
|
|
|
|
authors = [
|
|
|
|
{ name = "Azure Functions team at Microsoft Corp.", email = "azurefunctions@microsoft.com" }
|
|
|
|
]
|
|
|
|
keywords = ["azure", "functions", "azurefunctions",
|
|
|
|
"python", "serverless"]
|
|
|
|
license = { name = "MIT", file = "LICENSE" }
|
|
|
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Intended Audience :: Developers"
|
|
|
|
]
|
|
|
|
dependencies = [
|
2024-08-08 01:42:08 +03:00
|
|
|
"azure-functions==1.21.0b2",
|
2024-07-12 00:29:32 +03:00
|
|
|
"python-dateutil ~=2.9.0",
|
|
|
|
"protobuf~=3.19.3; python_version == '3.7'",
|
2024-07-23 01:03:55 +03:00
|
|
|
"protobuf~=4.25.3; python_version >= '3.8'",
|
2024-07-12 00:29:32 +03:00
|
|
|
"grpcio-tools~=1.43.0; python_version == '3.7'",
|
2024-07-23 01:03:55 +03:00
|
|
|
"grpcio-tools~=1.59.0; python_version >= '3.8'",
|
2024-07-12 00:29:32 +03:00
|
|
|
"grpcio~=1.43.0; python_version == '3.7'",
|
2024-07-23 01:03:55 +03:00
|
|
|
"grpcio~=1.59.0; python_version >= '3.8'",
|
2024-07-12 00:29:32 +03:00
|
|
|
"azurefunctions-extensions-base; python_version >= '3.8'"
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Documentation = "https://github.com/Azure/azure-functions-python-worker?tab=readme-ov-file#-azure-functions-python-worker"
|
|
|
|
Repository = "https://github.com/Azure/azure-functions-python-worker"
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"azure-eventhub", # Used for EventHub E2E tests
|
|
|
|
"azure-functions-durable", # Used for Durable E2E tests
|
|
|
|
"flask",
|
|
|
|
"fastapi~=0.103.2",
|
|
|
|
"pydantic",
|
|
|
|
"pycryptodome==3.*",
|
2024-07-23 01:03:55 +03:00
|
|
|
"flake8==5.*; python_version == '3.7'",
|
|
|
|
"flake8==6.*; python_version >= '3.8'",
|
2024-07-12 00:29:32 +03:00
|
|
|
"mypy",
|
|
|
|
"pytest~=7.4.4",
|
|
|
|
"requests==2.*",
|
|
|
|
"coverage",
|
|
|
|
"pytest-sugar",
|
|
|
|
"pytest-cov",
|
|
|
|
"pytest-xdist",
|
|
|
|
"pytest-randomly",
|
|
|
|
"pytest-instafail",
|
|
|
|
"pytest-rerunfailures",
|
|
|
|
"ptvsd",
|
|
|
|
"python-dotenv",
|
|
|
|
"plotly",
|
|
|
|
"scikit-learn",
|
|
|
|
"opencv-python",
|
|
|
|
"pandas",
|
|
|
|
"numpy",
|
2024-07-12 22:49:31 +03:00
|
|
|
"pre-commit",
|
|
|
|
"invoke"
|
2024-07-12 00:29:32 +03:00
|
|
|
]
|
|
|
|
test-http-v2 = [
|
|
|
|
"azurefunctions-extensions-http-fastapi",
|
|
|
|
"ujson",
|
|
|
|
"orjson"
|
|
|
|
]
|
|
|
|
test-deferred-bindings = [
|
|
|
|
"azurefunctions-extensions-bindings-blob"
|
|
|
|
]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=42", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
exclude = [
|
|
|
|
'eng', 'tests', 'pack'
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length = 88
|
|
|
|
multi_line_output = 3
|
|
|
|
include_trailing_comma = true
|
|
|
|
known_first_party = ["azure_functions_worker"]
|
|
|
|
default_section = "THIRDPARTY"
|
|
|
|
src_paths = ["azure_functions_worker"]
|
|
|
|
skip_glob = [
|
|
|
|
"build",
|
|
|
|
"dist",
|
|
|
|
"env",
|
|
|
|
"venv",
|
|
|
|
"*venv*",
|
|
|
|
"*.egg-info",
|
|
|
|
".tox",
|
|
|
|
".nox",
|
|
|
|
".git",
|
|
|
|
"__pycache__",
|
|
|
|
".ci",
|
|
|
|
".devcontainer",
|
|
|
|
".github",
|
|
|
|
"eng",
|
|
|
|
"pack",
|
|
|
|
"*protos/*"
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = {attr = "azure_functions_worker.version.VERSION"}
|