Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@
'Operating System :: OS Independent',
],
packages=find_packages(exclude=["tests"]),
data_files=[('', ['LICENSE'])],
package_data={'': ['LICENSE']}, # Do not use data_files=[...],
# which would cause the LICENSE being copied to /usr/local,
# and tend to fail because of insufficient permission.
# See https://stackoverflow.com/a/14211600/728675 for more detail
install_requires=[
'requests>=2.0.0,<3',
'PyJWT[crypto]>=1.0.0,<2',
Expand Down