Skip to content

Commit

Permalink
Added pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
gavin-aguiar committed Nov 19, 2024
1 parent f32b152 commit 94d234c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 73 deletions.
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "azure-functions"
dynamic = ["version"]
requires-python = ">=3.7"
authors = [{ name = "Azure Functions team at Microsoft Corp.", email = "[email protected]" }]
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.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',
'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',
'flake8~=4.0.1; python_version < "3.11"',
'flake8~=7.1.1; python_version >= "3.11"'
]

[tool.setuptools.packages.find]
exclude = [
'azure', 'eng', 'docs', 'tests'
]
73 changes: 0 additions & 73 deletions setup.py

This file was deleted.

0 comments on commit 94d234c

Please sign in to comment.