__about__.py -> __version__.py

This commit is contained in:
Justin Plock 2017-08-28 12:43:47 -04:00 committed by GitHub
parent cd2066c4a4
commit ab7ead672d

View File

@ -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)