Improve variables names in setup.py
authorHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 17:58:13 +0000 (12:58 -0500)
committerHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 17:58:13 +0000 (12:58 -0500)
setup.py

index 226988a79a4d84249840667feccb14ba9c6b622f..b7179c353fbe7c1335909fad8c413642de0b480c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -4,15 +4,15 @@
 import re
 from setuptools import find_packages, setup
 
-VERSIONFILE = "tweepy/__init__.py"
-VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
-with open(VERSIONFILE, "rt") as ver_file:
-    mo = re.search(VSRE, ver_file.read(), re.M)
+VERSION_FILE = "tweepy/__init__.py"
+VERSION_REGEX = r"^__version__ = ['\"]([^'\"]*)['\"]"
+with open(VERSION_FILE, "rt") as version_file:
+    match = re.search(VERSION_REGEX, version_file.read(), re.M)
 
-if mo:
-    version = mo.group(1)
+if match:
+    version = match.group(1)
 else:
-    raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
+    raise RuntimeError("Unable to find version string in %s." % (VERSION_FILE,))
 
 tests_require = [
     "mock>=1.0.1",