-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.55 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
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools >= 61.0", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "azure-functions"
dynamic = ["version"]
requires-python = ">=3.10"
authors = [{ name = "Azure Functions team at Microsoft Corp.", email = "azurefunctions@microsoft.com" }]
description = "Python library for Azure Functions."
readme = "README.md"
license = { text = "MIT License" }
classifiers = [
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
]
dependencies = [
'werkzeug~=3.1.3; python_version >= "3.9"',
'werkzeug~=3.0.6; python_version == "3.8"',
'werkzeug; python_version < "3.8"'
]
[project.optional-dependencies]
dev = [
'pytest',
'pytest-cov',
'coverage',
'pytest-instafail',
'pre-commit',
'azure-functions-durable',
'flake8~=4.0.1; python_version < "3.11"',
'flake8~=7.1.1; python_version >= "3.11"',
'flake8-docstrings'
]
[tool.setuptools.packages.find]
exclude = [
'azure', 'eng', 'docs', 'tests*'
]
[tool.setuptools.dynamic]
version = {attr = "azure.functions.__version__"}