This repository has been archived by the owner on Sep 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,11 @@ | |
io.open('adal/__init__.py', encoding='utf_8_sig').read() | ||
).group(1) | ||
|
||
try: | ||
long_description = open('README.md').read() | ||
except OSError: | ||
long_description = "README.md is not accessible on TRAVIS CI's Python 3.5" | ||
|
||
# To build: | ||
# python setup.py sdist | ||
# python setup.py bdist_wheel | ||
|
@@ -54,13 +59,16 @@ | |
version=__version__, | ||
description=('The ADAL for Python library makes it easy for python ' + | ||
'application to authenticate to Azure Active Directory ' + | ||
'(AAD) in order to access AAD protected web resources.'), | ||
'(AAD) in order to access AAD protected web resources. ' + | ||
'(It is now SUPERSEDED by MSAL Python.)'), | ||
license='MIT', | ||
author='Microsoft Corporation', | ||
author_email='[email protected]', | ||
url='https://github.com/AzureAD/azure-activedirectory-library-for-python', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Development Status :: 5 - Production/Stable', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
|