fix long description for pypi
This commit is contained in:
parent
420ca6346e
commit
fc45143799
1 changed files with 8 additions and 1 deletions
9
setup.py
9
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'
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue