Skip to content

Commit

Permalink
fix: setup support for README
Browse files Browse the repository at this point in the history
  • Loading branch information
joajfreitas committed Dec 2, 2019
1 parent 0a403a3 commit 179c0ee
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
Expand Down

0 comments on commit 179c0ee

Please sign in to comment.