From 90657a3b231aef405ca218e0ea36cbd3cdf93aa4 Mon Sep 17 00:00:00 2001 From: pacrob <5199899+pacrob@users.noreply.github.com> Date: Mon, 7 Apr 2025 16:11:45 -0600 Subject: [PATCH] update license info in description per latest python packaging guide --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 489a18a1..fb340070 100644 --- a/setup.py +++ b/setup.py @@ -84,7 +84,8 @@ setup( python_requires=">=3.9, <4", extras_require=extras_require, py_modules=["libp2p"], - license="MIT/APACHE2.0", + license="MIT AND Apache-2.0", + license_files=("LICENSE-MIT", "LICENSE-APACHE"), zip_safe=False, keywords="libp2p p2p", packages=find_packages(exclude=["scripts", "scripts.*", "tests", "tests.*"]), @@ -92,8 +93,6 @@ setup( classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", - "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9",