From 721cba721b9565f691ba3822ba79162f6c7bd1ad Mon Sep 17 00:00:00 2001 From: Niru Maheswaranathan Date: Thu, 25 May 2017 15:04:49 -0700 Subject: [PATCH] :bug:fix in metadata.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9257ba1..73fe1a5 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup __location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))) -with open(os.path.join(__location__, 'metadata.py'), 'r') as f: +with open(os.path.join(__location__, 'tableprint/metadata.py'), 'r') as f: metadata = dict(re.findall("__([a-z_]+)__\s*=\s*'([^']+)'", f.read()))