From 9bb54870ad3391f3c3095c4da3416995c65c6468 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Wed, 12 Mar 2014 16:21:22 -0700 Subject: [PATCH] update pypi setup and readme --- README.rst | 12 +++++++++--- setup.py | 7 ++----- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 7787093..9086d33 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,9 @@ WakaTime ======== -Fully automatic time tracking for your text editor. +Fully automatic time tracking for programmers. -This is the common interface for the WakaTime api. You shouldn't need to directly use this package unless you are creating a new plugin. +This is the common interface for the WakaTime api. You shouldn't need to directly use this package unless you are creating a new plugin or your text editor's plugin asks you to install the wakatime-cli interface. Go to http://wakatime.com to install the plugin for your text editor. @@ -11,4 +11,10 @@ Go to http://wakatime.com to install the plugin for your text editor. Installation ------------ -https://www.wakatime.com/help/plugins/installing-plugins + pip install wakatime + + +Usage +----- + +https://www.wakatime.com/ diff --git a/setup.py b/setup.py index 0a305db..31a1bec 100644 --- a/setup.py +++ b/setup.py @@ -11,13 +11,10 @@ setup( name='wakatime', version=VERSION, license='BSD 3 Clause', - description=' '.join([ - 'Action event appender for WakaTime, a time', - 'tracking api for text editors.', - ]), + description='Interface to the WakaTime api.', long_description=open('README.rst').read(), author='Alan Hamlett', - author_email='alan.hamlett@gmail.com', + author_email='alan@wakatime.com', url='https://github.com/wakatime/wakatime', packages=packages, package_dir={'wakatime': 'wakatime'},