Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit 3086592

Browse files
committed
Update metadata for next release
1 parent bf3b683 commit 3086592

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

setup.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@
3535
io.open('adal/__init__.py', encoding='utf_8_sig').read()
3636
).group(1)
3737

38+
try:
39+
long_description = open('README.md').read()
40+
except OSError:
41+
long_description = "README.md is not accessible on TRAVIS CI's Python 3.5"
42+
3843
# To build:
3944
# python setup.py sdist
4045
# python setup.py bdist_wheel
@@ -54,13 +59,16 @@
5459
version=__version__,
5560
description=('The ADAL for Python library makes it easy for python ' +
5661
'application to authenticate to Azure Active Directory ' +
57-
'(AAD) in order to access AAD protected web resources.'),
62+
'(AAD) in order to access AAD protected web resources. ' +
63+
'(It is now SUPERSEDED by MSAL Python.)'),
5864
license='MIT',
5965
author='Microsoft Corporation',
6066
author_email='[email protected]',
6167
url='https://github.com/AzureAD/azure-activedirectory-library-for-python',
68+
long_description=long_description,
69+
long_description_content_type="text/markdown",
6270
classifiers=[
63-
'Development Status :: 3 - Alpha',
71+
'Development Status :: 5 - Production/Stable',
6472
'Programming Language :: Python',
6573
'Programming Language :: Python :: 2',
6674
'Programming Language :: Python :: 2.7',

0 commit comments

Comments
 (0)