From ab7ead672d12d7e9e81525fd3d00fe85e4ccd6fa Mon Sep 17 00:00:00 2001 From: Justin Plock Date: Mon, 28 Aug 2017 12:43:47 -0400 Subject: [PATCH] __about__.py -> __version__.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c449776..6904231 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ here = os.path.abspath(os.path.dirname(__file__)) with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = '\n' + f.read() -# Load the package's __about__.py module as a dictionary. +# Load the package's __version__.py module as a dictionary. about = {} with open(os.path.join(here, NAME, "__version__.py")) as f: exec(f.read(), about)