Skip to content

Commit

Permalink
Prepare release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rayluo committed Dec 12, 2018
1 parent 3257532 commit 93c58b8
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 5 deletions.
24 changes: 24 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
The MIT License (MIT)

Copyright (c) Microsoft Corporation.
All rights reserved.

This code is licensed under the MIT License.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,25 @@
io.open('msal/application.py', encoding='utf_8_sig').read()
).group(1)

long_description = open('README.md').read()

setup(
name='msal',
version=__version__,
description=(
'The MSAL for Python library makes it easy for python application '
'to authenticate to Azure Active Directory v2 '
'(which serves Microsoft Account and AAD and B2C).'),
description=' '.join(
"""The Microsoft Authentication Library (MSAL) for Python library
enables your app to access the Microsoft Cloud
by supporting authentication of users with
Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA)
using industry standard OAuth2 and OpenID Connect.""".split()),
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
author='Microsoft Corporation',
author_email='[email protected]',
url='https://github.com/AzureAD/microsoft-authentication-library-for-python',
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
Expand All @@ -58,6 +64,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
packages=find_packages(),
install_requires=[
Expand Down

0 comments on commit 93c58b8

Please sign in to comment.