-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
86 lines (73 loc) · 2.33 KB
/
pyproject.toml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "msgraph-sdk"
# The SDK version
# x-release-please-start-version
version = "1.14.0"
# x-release-please-end
authors = [{name = "Microsoft", email = "[email protected]"}]
description = "The Microsoft Graph Python SDK"
dependencies = [
"azure-identity >=1.12.0",
"microsoft-kiota-abstractions >=1.3.0,<2.0.0",
"microsoft-kiota-authentication-azure >=1.0.0,<2.0.0",
"microsoft-kiota-serialization-json >=1.3.0,<2.0.0",
"microsoft-kiota-serialization-text >=1.0.0,<2.0.0",
"microsoft-kiota-serialization-form >=0.1.0",
"microsoft-kiota-serialization-multipart >=0.1.0",
"microsoft-kiota-http >=1.0.0,<2.0.0",
"msgraph_core >=1.0.0"
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["msgraph", "openAPI", "Microsoft", "Graph"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = ["yapf", "bumpver", "isort", "pylint", "pytest", "mypy"]
[project.urls]
homepage = "https://github.com/microsoftgraph/msgraph-sdk-python#readme"
repository = "https://github.com/microsoftgraph/msgraph-sdk-python"
documentation = "https://github.com/microsoftgraph/msgraph-sdk-python/docs"
[tool.flit.module]
name = "msgraph"
[tool.mypy]
warn_unused_configs = true
files = "msgraph"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "msgraph.generated"
ignore_errors = true
[tool.yapf]
based_on_style = "pep8"
dedent_closing_brackets = true
each_dict_entry_on_separate_line = true
column_limit = 100
[tool.isort]
profile = "hug"
[tool.pytest.ini_options]
pythonpath = [
"msgraph"
]
[tool.bumpver]
current_version = "1.5.0"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = false
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"msgraph/_version.py" = ["{version}"]
[tool.poetry.packages]
include = ["msgraph"]