|
35 | 35 | io.open('msal/application.py', encoding='utf_8_sig').read() |
36 | 36 | ).group(1) |
37 | 37 |
|
| 38 | +long_description = open('README.md').read() |
| 39 | + |
38 | 40 | setup( |
39 | 41 | name='msal', |
40 | 42 | 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", |
45 | 51 | license='MIT', |
46 | 52 | author='Microsoft Corporation', |
47 | 53 | |
48 | 54 | url='https://github.com/AzureAD/microsoft-authentication-library-for-python', |
49 | 55 | classifiers=[ |
50 | | - 'Development Status :: 3 - Alpha', |
| 56 | + 'Development Status :: 4 - Beta', |
51 | 57 | 'Programming Language :: Python', |
52 | 58 | 'Programming Language :: Python :: 2', |
53 | 59 | 'Programming Language :: Python :: 2.7', |
|
58 | 64 | 'Programming Language :: Python :: 3.6', |
59 | 65 | 'Programming Language :: Python :: 3.7', |
60 | 66 | 'License :: OSI Approved :: MIT License', |
| 67 | + 'Operating System :: OS Independent', |
61 | 68 | ], |
62 | 69 | packages=find_packages(), |
63 | 70 | install_requires=[ |
|
0 commit comments