From 179c0eea2dd84eef34e3a7d10f920b2d21be6925 Mon Sep 17 00:00:00 2001 From: joajfreitas Date: Mon, 2 Dec 2019 11:31:00 +0000 Subject: [PATCH] fix: setup support for README --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index 2c3b0de..9f6fff9 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,15 @@ from setuptools import setup, find_packages +# read the contents of your README file +from os import path +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + setup( name='marcador', description='Simple rofi based bookmark manager', + long_description=long_description, version='0.2', author="João Freitas", author_email="joaj.freitas@gmail.com",