aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index ef1c0bd..81cb54f 100644
--- a/setup.py
+++ b/setup.py
@@ -26,13 +26,13 @@ here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), 'r') as fr:
long_description = fr.read()
-version = {}
+version_file = {}
with open(path.join(here, 'wikiget', 'version.py'), 'r') as fv:
- exec(fv.read(), version)
+ exec(fv.read(), version_file)
setup(
name='wikiget',
- version=version['__version__'],
+ version=version_file['__version__'],
author='Cody Logan',
author_email='clpo13@gmail.com',
description='CLI tool for downloading files from MediaWiki sites',