File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed
Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 1+ [distutils]
2+ index-servers =
3+ pypi
4+ testpypi
5+
6+ [pypi]
7+ repository = https://upload.pypi.org/legacy/
8+ username = msgraphsdkteam
9+
10+ [testpypi]
11+ repository = https://test.pypi.org/legacy/
12+ username = msgraphsdkteam-test
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -6,12 +6,9 @@ build-backend = "flit_core.buildapi"
66module = " msgraph"
77author = " Microsoft"
88author-email = " graphtooling+python@microsoft.com"
9- home-page = " https://github.com/microsoftgraph/msgraph-sdk-python-core"
9+ home-page = " https://github.com/microsoftgraph/msgraph-sdk-python-core"
1010dist-name =" msgraph-core"
11- requires =[
12- " requests >= 2.23.0" ,
13- ]
1411requires-python =" >=3.5"
15- classifiers = [" License :: OSI Approved :: MIT License" ]
12+ classifiers = [ " License :: OSI Approved :: MIT License" , ]
1613description-file = " README.md"
1714
You can’t perform that action at this time.
0 commit comments