1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From d0cfc99002d613e2abaf76f13a049cc8a3fdb663 Mon Sep 17 00:00:00 2001
From: Christos Trochalakis <yatiohi@ideopolis.gr>
Date: Wed, 7 Sep 2016 12:04:59 +0300
Subject: Switch to trove classifiers
This avoids shipping a license file in the top directory.
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 40f696f..32bb58b 100755
--- a/setup.py
+++ b/setup.py
@@ -40,8 +40,8 @@ setup(name='confluent-kafka',
url='https://github.com/confluentinc/confluent-kafka-python',
ext_modules=[module],
packages=find_packages(exclude=("tests", "tests.*")),
- data_files=[('', ['LICENSE.txt'])],
install_requires=INSTALL_REQUIRES,
+ classifiers=['License :: OSI Approved :: Apache Software License'],
extras_require={
'avro': ['fastavro', 'requests', avro],
'dev': get_install_requirements("test-requirements.txt")
|