forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.62 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "azure-postgresql-auth"
authors = [
{name = "Microsoft Corporation", email = "azpysdkhelp@microsoft.com"},
]
description = "Microsoft Azure PostgreSQL Auth Library for Python"
keywords = ["azure", "azure sdk", "postgresql", "entra"]
requires-python = ">=3.9"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"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",
]
dependencies = [
"azure-core>=1.31.0",
]
dynamic = ["version", "readme"]
[project.optional-dependencies]
psycopg3 = [
"psycopg[binary]>=3.1.0",
"psycopg-pool>=3.1.0",
]
psycopg2 = [
"psycopg2-binary>=2.9.0",
]
sqlalchemy = [
"sqlalchemy>=2.0.0",
]
[project.urls]
repository = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/postgresql/azure-postgresql-auth"
[tool.setuptools.dynamic]
version = {attr = "azure_postgresql_auth._version.VERSION"}
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
include = ["azure_postgresql_auth*"]
[tool.setuptools.package-data]
pytyped = ["py.typed"]
[tool.azure-sdk-build]
mypy = true
pyright = false
black = true
[tool.azure-sdk-conda]
in_bundle = false