From 41c0191cf93ecfc4461a9832a0be7bf7f0db1cef Mon Sep 17 00:00:00 2001 From: James Lu Date: Tue, 6 Jun 2017 12:54:48 -0700 Subject: [PATCH] setup.py: update comments and my email --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fb0e357..796c192 100644 --- a/setup.py +++ b/setup.py @@ -12,10 +12,10 @@ except ImportError: from codecs import open import subprocess -# Get version from Git tags. with open('VERSION', encoding='utf-8') as f: version = f.read().strip() +# Try to fetch the current commit hash from Git. try: real_version = subprocess.check_output(['git', 'describe', '--tags']).decode('utf-8').strip() except Exception as e: @@ -48,7 +48,7 @@ setup( # Author details author='James Lu', - author_email='GLolol@overdrivenetworks.com', + author_email='james@overdrivenetworks.com', # Choose your license license='MPL 2.0',