mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-14 02:58:10 +00:00
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:
@ -38,7 +38,7 @@ setuptools.setup(
|
|||||||
url="https://github.com/microsoft/onefuzz/",
|
url="https://github.com/microsoft/onefuzz/",
|
||||||
author="Microsoft Corporation",
|
author="Microsoft Corporation",
|
||||||
author_email="fuzzing@microsoft.com",
|
author_email="fuzzing@microsoft.com",
|
||||||
license_file="LICENSE",
|
license="MIT",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
entry_points={"console_scripts": ["onefuzz = onefuzz.__main__:main"]},
|
entry_points={"console_scripts": ["onefuzz = onefuzz.__main__:main"]},
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
|
@ -38,7 +38,7 @@ setuptools.setup(
|
|||||||
url="https://github.com/microsoft/onefuzz/",
|
url="https://github.com/microsoft/onefuzz/",
|
||||||
author="Microsoft Corporation",
|
author="Microsoft Corporation",
|
||||||
author_email="fuzzing@microsoft.com",
|
author_email="fuzzing@microsoft.com",
|
||||||
license_file="LICENSE",
|
license="MIT",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
Reference in New Issue
Block a user