From 09f96a8c3dd9fdf605c17cc85b4b7ab66af30aeb Mon Sep 17 00:00:00 2001 From: Yann Kaiser Date: Sun, 23 Jan 2022 20:12:15 -0800 Subject: [PATCH] Fix long_description, bump to 2.0.1 --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f1fd89f..ec169f8 100755 --- a/setup.py +++ b/setup.py @@ -1,11 +1,19 @@ #!/usr/bin/env python +import pathlib from setuptools import setup +here = pathlib.Path(__file__).parent.resolve() + +long_description = (here / "README.rst").read_text(encoding='utf-8') + + setup( name='od', - version='2.0.0', + version='2.0.1', description='Shorthand syntax for building OrderedDicts', + long_description=long_description, + long_description_content_type='text/x-rst', license='MIT', url='https://github.com/epsy/od', author='Yann Kaiser',