From 06b3694633bd8315d55b5d75a2ca6c20afc54651 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Thu, 20 Apr 2017 13:28:47 +0200 Subject: build: Fix setup.py setup.py was trying to read README, which was renamed to README.md --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e294437..33d6813 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from os import path here = path.abspath(path.dirname(__file__)) -with open(path.join(here, 'README'), encoding='utf-8') as f: +with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( -- cgit v1.2.3