Skip to content

Commit 331aea7

Browse files
committed
Add a package level docstring
1 parent 103e7fe commit 331aea7

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

msgraph/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,10 @@
22
# Copyright (c) Microsoft Corporation.
33
# Licensed under the MIT License.
44
# -----------------------------------
5+
"""
6+
Core component of the Microsoft Graph Python SDK consisting of HTTP/Graph Client and a configurable
7+
middleware pipeline
8+
"""
9+
from .core import SDK_VERSION
10+
11+
__version__ = SDK_VERSION

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@ build-backend = "flit_core.buildapi"
66
module = "msgraph"
77
author = "Microsoft"
88
author-email = "[email protected]"
9-
home-page="https://github.com/microsoftgraph/msgraph-sdk-python-core"
9+
home-page = "https://github.com/microsoftgraph/msgraph-sdk-python-core"
1010
dist-name="msgraph-core"
11-
requires=[
12-
"requests >= 2.23.0",
13-
]
1411
requires-python=">=3.5"
15-
classifiers = ["License :: OSI Approved :: MIT License"]
12+
classifiers = [ "License :: OSI Approved :: MIT License",]
1613
description-file = "README.md"
1714

0 commit comments

Comments
 (0)