We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feeda9c commit b1c0cbdCopy full SHA for b1c0cbd
setup.py
@@ -1,12 +1,19 @@
1
from setuptools import setup, find_packages
2
3
+# read the contents of your README file
4
+from os import path
5
+this_directory = path.abspath(path.dirname(__file__))
6
+with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
7
+ long_description = f.read()
8
9
setup(
10
name="python-json-logger",
11
version="2.0.0",
12
url="http://github.com/madzak/python-json-logger",
13
license="BSD",
14
description="A python library adding a json log formatter",
15
+ long_description=long_description,
16
+ long_description_content_type='text/markdown',
17
author="Zakaria Zajac",
18
author_email="zak@madzak.com",
19
package_dir={'': 'src'},
0 commit comments