Skip to content

Commit 94d234c

Browse files
committed
Added pyproject.toml
1 parent f32b152 commit 94d234c

File tree

2 files changed

+45
-73
lines changed

2 files changed

+45
-73
lines changed

pyproject.toml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[build-system]
2+
requires = ["setuptools >= 61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "azure-functions"
7+
dynamic = ["version"]
8+
requires-python = ">=3.7"
9+
authors = [{ name = "Azure Functions team at Microsoft Corp.", email = "[email protected]" }]
10+
description = "Python library for Azure Functions."
11+
readme = "README.md"
12+
license = { text = "MIT License" }
13+
classifiers = [
14+
'License :: OSI Approved :: MIT License',
15+
'Intended Audience :: Developers',
16+
'Programming Language :: Python :: 3',
17+
'Programming Language :: Python :: 3.9',
18+
'Programming Language :: Python :: 3.10',
19+
'Programming Language :: Python :: 3.11',
20+
'Operating System :: Microsoft :: Windows',
21+
'Operating System :: POSIX',
22+
'Operating System :: MacOS :: MacOS X',
23+
'Environment :: Web Environment',
24+
'Development Status :: 5 - Production/Stable',
25+
]
26+
dependencies = [
27+
'werkzeug~=3.1.3; python_version >= "3.9"',
28+
'werkzeug~=3.0.6; python_version == "3.8"',
29+
'werkzeug; python_version < "3.8"'
30+
]
31+
[project.optional-dependencies]
32+
dev = [
33+
'pytest',
34+
'pytest-cov',
35+
'coverage',
36+
'pytest-instafail',
37+
'pre-commit',
38+
'flake8~=4.0.1; python_version < "3.11"',
39+
'flake8~=7.1.1; python_version >= "3.11"'
40+
]
41+
42+
[tool.setuptools.packages.find]
43+
exclude = [
44+
'azure', 'eng', 'docs', 'tests'
45+
]

setup.py

Lines changed: 0 additions & 73 deletions
This file was deleted.

0 commit comments

Comments
 (0)