diff --git a/setup.py b/setup.py index ed7dc63..8c45edf 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,13 @@ +from os import path from setuptools import setup +here = path.abspath(path.dirname(__file__)) +with open(path.join(here, 'README.md'), 'r', encoding='utf-8') as f: + long_description = f.read() + setup( name="bundlewrap-pass", - version="1.0.0", + version="1.0.1", description="Get passwordstore entries via bundlewrap", author="Franziska Kunsmann", author_email="hi@kunsmann.eu", @@ -26,4 +31,6 @@ setup( install_requires=[ "bundlewrap >= 4.0.0", ], + long_description=long_description, + long_description_content_type='text/markdown' )