From 785d7d40fa360cae14d55e1d4a1bf8194f803532 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 9 Sep 2022 12:50:38 -0400 Subject: [PATCH] Add COPYRIGHT notice --- confluent_client/COPYRIGHT | 21 +++++++++++++++++++++ confluent_client/setup.py.tmpl | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 confluent_client/COPYRIGHT diff --git a/confluent_client/COPYRIGHT b/confluent_client/COPYRIGHT new file mode 100644 index 00000000..da775ec8 --- /dev/null +++ b/confluent_client/COPYRIGHT @@ -0,0 +1,21 @@ +Name: confluent-client +Project: https://hpc.lenovo.com/users/ +Source: https://github.com/lenovo/confluent + +Files: * +Copyright: 2014-2019 Lenovo +License: Apache-2.0 + +File: client.py: +Copyright: 2014 IBM Corporation + 2015-2019 Lenovo +License: Apache-2.0 + +File: sortutil.py +Copyright: 2014 IBM Corporation + 2015-2016 Lenovo +License: Apache-2.0 + +File: tlv.py +Copyright: 2014 IBM Corporation +License: Apache-2.0 diff --git a/confluent_client/setup.py.tmpl b/confluent_client/setup.py.tmpl index cefac699..2d0732d8 100644 --- a/confluent_client/setup.py.tmpl +++ b/confluent_client/setup.py.tmpl @@ -2,7 +2,7 @@ from setuptools import setup import os data_files = [('/etc/profile.d', ['confluent_env.sh', 'confluent_env.csh']), - ('/opt/confluent/share/licenses/confluent_client/', ['LICENSE']) + ('/opt/confluent/share/licenses/confluent_client/', ['LICENSE', 'COPYRIGHT']) ] try: scriptlist = ['bin/{0}'.format(d) for d in os.listdir('bin/')]