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 16aadec commit e6ea580Copy full SHA for e6ea580
setup.py
@@ -34,14 +34,9 @@
34
35
version = tika.__version__
36
37
-_descr = u'''
38
-***************
39
-tika
40
+with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
+ _descr = f.read()
41
42
-.. contents::
43
-Tika python pure REST based library.
44
-'''
45
_keywords = 'tika digital babel fish apache'
46
_classifiers = [
47
'Development Status :: 3 - Alpha',
@@ -67,6 +62,7 @@ def read(*rnames):
67
62
version=version,
68
63
description='Apache Tika Python library',
69
64
long_description=long_description,
65
+ long_description_content_type='text/markdown',
70
66
classifiers=_classifiers,
71
keywords=_keywords,
72
author='Chris Mattmann',
0 commit comments