From e74a07663650c46876d50c3306cf32c769d0ce15 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Sat, 4 Mar 2017 12:04:58 -0500 Subject: [PATCH] Add basic setup.py Initialize lftools as a project on pypi. Change-Id: I901ecd512a856f2693da773ae08861ca1bfbf7c8 Signed-off-by: Thanh Ha --- setup.py | 28 +++++++++++++++++++++++++ patch-odl-release.sh => shell/patch-odl-release | 0 version.sh => shell/version | 0 3 files changed, 28 insertions(+) create mode 100644 setup.py rename patch-odl-release.sh => shell/patch-odl-release (100%) rename version.sh => shell/version (100%) diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..2ee98dc6 --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +from distutils.core import setup + +setup( + name='lftools', + version='0.0.2', + author='Thanh Ha', + author_email='thanh.ha@linuxfoundation.org', + url='', + description='', + long_description=( + 'The main purpose of Spectrometer is to deliver transparent ' + 'statistics of contributions to OpenDaylight Project. It collects ' + 'activity data such as 1. commits and number of code lines changed ' + 'from ODL Git repositories, 2. reviews from Gerrit, or 3. activities ' + 'related to each project from mailing lists and presents the ' + 'statistics in a user-friendly manner.'), + license='EPL', + classifiers=[ + 'Development Status :: 1 - Planning', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3.5', + ], + scripts=[ + 'shell/patch-odl-release', + 'shell/version', + ], +) diff --git a/patch-odl-release.sh b/shell/patch-odl-release similarity index 100% rename from patch-odl-release.sh rename to shell/patch-odl-release diff --git a/version.sh b/shell/version similarity index 100% rename from version.sh rename to shell/version -- 2.16.6