From a93d54f4f4f3a5b06128eb1091bb710745c3c1ba Mon Sep 17 00:00:00 2001 From: "Jan D. Behrens" Date: Fri, 3 Aug 2012 13:04:12 +0200 Subject: [PATCH] Fixed wrong filename in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ab818f2..38572a2 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) -README = open(os.path.join(here, 'README.txt')).read() +README = open(os.path.join(here, 'README.md')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ -- 2.39.2