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.
1 parent 80eac92 commit 6fbbb21Copy full SHA for 6fbbb21
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