This repository was archived by the owner on Sep 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 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
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' ,
60666167 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' ,
You can’t perform that action at this time.
0 commit comments