From c0f6b8e7effcb343d279e0b2005ebccb908f372d Mon Sep 17 00:00:00 2001 From: livia-macon Date: Fri, 14 Aug 2026 14:29:20 -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 8ded715..9e131df 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,12 @@ name='botcity-framework-web', 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-web-python', long_description=open('README.md', 'r', encoding='utf-8').read(),