From 4a084afb41ae43d00430517a4ddf6344ad595b9c Mon Sep 17 00:00:00 2001 From: Niru Maheswaranathan Date: Thu, 25 May 2017 11:47:42 -0700 Subject: [PATCH] :bug:fix in setup.py --- metadata.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.py b/metadata.py index 6e05b69..853e753 100644 --- a/metadata.py +++ b/metadata.py @@ -1,6 +1,6 @@ # Version info __name__ = 'tableprint' -__version__ = '0.6.1' +__version__ = '0.6.3' __license__ = 'MIT' # Project description(s) diff --git a/setup.py b/setup.py index 5363840..84c70e7 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup with open('metadata.py', 'r') as f: - metadata = dict(re.findall("", f.read())) + metadata = dict(re.findall("__([a-z]+)__\s*=\s*'([^']+)'", f.read())) setup(