Skip to content

Commit 93c58b8

Browse files
committed
Prepare release 0.1.0
1 parent 3257532 commit 93c58b8

File tree

2 files changed

+36
-5
lines changed

2 files changed

+36
-5
lines changed

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Microsoft Corporation.
4+
All rights reserved.
5+
6+
This code is licensed under the MIT License.
7+
8+
Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files(the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions :
14+
15+
The above copyright notice and this permission notice shall be included in
16+
all copies or substantial portions of the Software.
17+
18+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
21+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
THE SOFTWARE.

setup.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,25 @@
3535
io.open('msal/application.py', encoding='utf_8_sig').read()
3636
).group(1)
3737

38+
long_description = open('README.md').read()
39+
3840
setup(
3941
name='msal',
4042
version=__version__,
41-
description=(
42-
'The MSAL for Python library makes it easy for python application '
43-
'to authenticate to Azure Active Directory v2 '
44-
'(which serves Microsoft Account and AAD and B2C).'),
43+
description=' '.join(
44+
"""The Microsoft Authentication Library (MSAL) for Python library
45+
enables your app to access the Microsoft Cloud
46+
by supporting authentication of users with
47+
Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA)
48+
using industry standard OAuth2 and OpenID Connect.""".split()),
49+
long_description=long_description,
50+
long_description_content_type="text/markdown",
4551
license='MIT',
4652
author='Microsoft Corporation',
4753
author_email='[email protected]',
4854
url='https://github.com/AzureAD/microsoft-authentication-library-for-python',
4955
classifiers=[
50-
'Development Status :: 3 - Alpha',
56+
'Development Status :: 4 - Beta',
5157
'Programming Language :: Python',
5258
'Programming Language :: Python :: 2',
5359
'Programming Language :: Python :: 2.7',
@@ -58,6 +64,7 @@
5864
'Programming Language :: Python :: 3.6',
5965
'Programming Language :: Python :: 3.7',
6066
'License :: OSI Approved :: MIT License',
67+
'Operating System :: OS Independent',
6168
],
6269
packages=find_packages(),
6370
install_requires=[

0 commit comments

Comments
 (0)