fix long description for pypi

This commit is contained in:
Franzi 2021-07-02 17:00:22 +02:00
parent 420ca6346e
commit fc45143799
Signed by: kunsi
GPG Key ID: 12E3D2136B818350
1 changed files with 8 additions and 1 deletions

View File

@ -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'
)