Skip to content

Commit

Permalink
Keyword should only hold name of license (#701)
Browse files Browse the repository at this point in the history
* Keyword should only hold name of license

In accordance with pypa/twine#425

* Correct license name
  • Loading branch information
rshah713 authored Aug 29, 2022
1 parent 484a333 commit 6152a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
package_data={'': ['LICENSE', 'README.md']},
package_dir={'plyer': 'plyer'},
include_package_data=True,
license=open(join(CURDIR, 'LICENSE')).read(),
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 6152a42

Please sign in to comment.