Remove Contributor list 55/4055/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Tue, 7 Mar 2017 16:53:37 +0000 (11:53 -0500)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Tue, 7 Mar 2017 16:53:39 +0000 (11:53 -0500)
We can get the contributor list to a file by checking git-log which
would provide more accurate data anyway.

Change-Id: I538c205021e08f1fa3c7faf9d2957c648f362b07
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
lftools/__init__.py
lftools/cli/__init__.py
lftools/cli/version.py

index cb0a992..02e8528 100644 (file)
@@ -12,4 +12,5 @@
 ##############################################################################
 """lftools package."""
 
+__author__ = 'Thanh Ha'
 __version__ = '0.0.8'
index 52222b4..c6e9332 100644 (file)
@@ -6,11 +6,12 @@
 # are made available under the terms of the Eclipse Public License v1.0
 # which accompanies this distribution, and is available at
 # http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-#   Thanh Ha - Initial implementation
 ##############################################################################
 """CLI main for lftools."""
+
+__author__ = 'Thanh Ha'
+
+
 import click
 from lftools.cli.version import version
 
index 10b3ced..666d8d4 100644 (file)
@@ -6,11 +6,12 @@
 # are made available under the terms of the Eclipse Public License v1.0
 # which accompanies this distribution, and is available at
 # http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-#   Thanh Ha - Initial implementation
 ##############################################################################
 """Wrapper for version bash script."""
+
+__author__ = 'Thanh Ha'
+
+
 import os
 import subprocess
 import sys