use license rather than license_file for python packages (#472)

Use the correct field for specifying the license for the onefuzz python pacakges following [setup tools documentation](https://packaging.python.org/guides/distributing-packages-using-setuptools/#license)
This commit is contained in:
bmc-msft
2021-01-28 12:56:29 -05:00
committed by GitHub
parent 07760bf967
commit 98b6626a84
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ setuptools.setup(
url="https://github.com/microsoft/onefuzz/",
author="Microsoft Corporation",
author_email="fuzzing@microsoft.com",
license_file="LICENSE",
license="MIT",
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["onefuzz = onefuzz.__main__:main"]},
install_requires=requirements,