From f1630f3297fe3b3c5cd47094866d8468bdbb9f19 Mon Sep 17 00:00:00 2001 From: livia-macon Date: Fri, 14 Aug 2026 14:35:44 -0300 Subject: [PATCH] ENH: Declare Apache 2.0 license in package metadata. --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 0dbf838..8924e13 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,12 @@ name='botcity-framework-core', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), + license='Apache-2.0', + license_files=('LICENSE',), + classifiers=[ + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python :: 3', + ], packages=find_namespace_packages(include=['botcity.*']), url='https://www.github.com/botcity-dev/botcity-framework-core-python', long_description=open('README.md', 'r', encoding='utf-8').read(),