From 47fbd250185f07e58f1e790fe8929289e5e31d59 Mon Sep 17 00:00:00 2001 From: RishabhDeep Singh Date: Tue, 6 Dec 2022 06:07:21 +0530 Subject: [PATCH] Add LICENSE.txt to python (#7692) * Add LICENSE.txt to python * Remove LICENSE.txt from python path and used the root LICENSE.txt file --- python/setup.cfg | 4 ++++ python/setup.py | 1 + 2 files changed, 5 insertions(+) diff --git a/python/setup.cfg b/python/setup.cfg index 3c6e79cf31d..bb0feff994d 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,2 +1,6 @@ [bdist_wheel] universal=1 + +[metadata] +license_files = + ../license.txt \ No newline at end of file diff --git a/python/setup.py b/python/setup.py index 80cf9250857..bb5e71ae46a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -18,6 +18,7 @@ name='flatbuffers', version='22.11.23', license='Apache 2.0', + license_files='../LICENSE.txt', author='Derek Bailey', author_email='derekbailey@google.com', url='https://google.github.io/flatbuffers/',