Fix name of LICENSE file in MANIFEST.in

This avoids a warning during build (and during pip install).

Also, fix license parameter in setup.py. This param should
be the name of the license, not the file containing the
license. Since this package is dual licensed I copied the
syntax used in setuptools itself which is "XXX or YYY".
This commit is contained in:
Sam Clegg 2014-11-30 12:23:04 -08:00 committed by Stanislav Kudriashev
parent 5104c98744
commit 42fb44ddc9
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
include README.rst
include LICENSE.txt
include LICENSE

View File

@ -26,7 +26,7 @@ setup(
'nose',
'termcolor',
],
license='LICENSE',
license='MIT or BSD',
entry_points={
'nose.plugins.0.10': [
'nosetimer = nosetimer.plugin:TimerPlugin',