We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9638797 + c4dc10f commit 171d67aCopy full SHA for 171d67a
msal/application.py
@@ -18,7 +18,7 @@
18
19
20
# The __init__.py will import this. Not the other way around.
21
-__version__ = "0.5.0"
+__version__ = "0.5.1"
22
23
logger = logging.getLogger(__name__)
24
setup.py
@@ -67,7 +67,10 @@
67
'Operating System :: OS Independent',
68
],
69
packages=find_packages(exclude=["tests"]),
70
- data_files=[('', ['LICENSE'])],
+ package_data={'': ['LICENSE']}, # Do not use data_files=[...],
71
+ # which would cause the LICENSE being copied to /usr/local,
72
+ # and tend to fail because of insufficient permission.
73
+ # See https://stackoverflow.com/a/14211600/728675 for more detail
74
install_requires=[
75
'requests>=2.0.0,<3',
76
'PyJWT[crypto]>=1.0.0,<2',
0 commit comments