From 30c571257203a844c66e5608d6ab865f78dcf865 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 11 Feb 2017 16:47:27 +0100 Subject: [PATCH] Show use README for long_description in setup.py --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 7740eb6..f292325 100644 --- a/setup.py +++ b/setup.py @@ -2,9 +2,8 @@ from setuptools import setup -long_description = """ -Easily encode your data into a 2D barcode using the PDF417 format. -""" +with open("README.rst") as readme: + long_description = readme.read() setup( name='pdf417gen',