-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (59 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "azure-connectors"
dynamic = ["version"]
requires-python = ">=3.10"
description = "Azure Connectors SDK for Python"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Azure Connector Namespaces team at Microsoft Corp.", email = "azurelogicapps@microsoft.com" }
]
keywords = ["azure", "connectors", "python", "serverless"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Typing :: Typed"
]
dependencies = [
"aiohttp",
"azure-identity[aio]",
]
[project.urls]
Documentation = "https://github.com/Azure/connectors-python-sdk"
Repository = "https://github.com/Azure/connectors-python-sdk"
Changelog = "https://github.com/Azure/connectors-python-sdk/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"flake8>=6,<8",
"mypy",
"pytest",
"pytest-asyncio",
"httpx", # For FastAPI testing
"requests==2.*",
"coverage",
"pytest-sugar",
"pytest-cov",
"pytest-xdist",
"pytest-randomly",
"pytest-instafail",
"pytest-rerunfailures",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
'azure', 'docs', 'tests*', 'samples', 'scripts'
]
[tool.setuptools.dynamic]
version = {attr = "azure.connectors.__version__"}