We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b7f9a6 commit 23b4142Copy full SHA for 23b4142
setup.py
@@ -9,6 +9,9 @@
9
mod_dir = os.path.join(work_dir, 'src', 'confluent_kafka')
10
ext_dir = os.path.join(mod_dir, 'src')
11
12
+with open(os.path.join(work_dir, 'README.md'), encoding='utf-8') as f:
13
+ long_description = f.read()
14
+
15
INSTALL_REQUIRES = [
16
'futures;python_version<"3.2"',
17
'enum34;python_version<"3.4"',
@@ -80,6 +83,8 @@ def get_install_requirements(path):
80
83
description='Confluent\'s Python client for Apache Kafka',
81
84
author='Confluent Inc',
82
85
author_email='support@confluent.io',
86
+ long_description=long_description,
87
+ long_description_content_type='text/markdown',
88
url='https://github.com/confluentinc/confluent-kafka-python',
89
ext_modules=[module],
90
packages=find_packages('src'),
0 commit comments