Adds make targets 'release' and 'prerelease' which build release
source packages, register them, etc.
diff --git a/setup_utils.py b/setup_utils.py
index 05443b6..6ea7edc 100644
--- a/setup_utils.py
+++ b/setup_utils.py
@@ -18,7 +18,7 @@
__author__ = 'tom.h.miller@gmail.com (Tom Miller)'
-def get_missing_requirements():
+def get_missing_requirements(third_party_reqs ):
"""Return a list of missing third party packages."""
import sys
@@ -32,7 +32,6 @@
import os.path
sys.path.remove(os.path.abspath(os.path.curdir))
missing_pkgs = []
- third_party_reqs = ['oauth2', 'httplib2']
for pkg in third_party_reqs:
try:
__import__(pkg)
@@ -83,4 +82,4 @@
if pkg:
return pkg
else:
- raise ImportError('Cannot find json support')
+ raise ImportError('Cannot find json support')