Commit: 7f1af7c8cc559adc5f6070e54d9429bf557861f0 Parent: 01cfa16b187314d2bad5724257ee6c04d66d3b8a Author: Vi Grey Date: 2016-06-10 08:22 UTC Summary: Updated credits and changed LICENSE.txt to LICENSE and white-rabbit to whiterabbit LICENSE.txt => LICENSE | 2 +- README.md | 2 +- setup.py | 10 +++++----- white-rabbit => whiterabbit | 26 ++++++++++++++++++++++++++ 4 files changed, 33 insertions(+), 7 deletions(-) diff --git a/LICENSE.txt b/LICENSE similarity index 97% rename from LICENSE.txt rename to LICENSE index ec54703..6954dfe 100644 --- a/LICENSE.txt +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2013-2015, Vi Grey +Copyright (C) 2013-2016, Vi Grey All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index c0ab126..b8ecca9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ White Rabbit ============ -White Rabbit is created by Vi Grey (http://pariahvi.com) and is licensed under a BSD 2-Clause License. Read LICENSE.txt for more license text. +White Rabbit is created by Vi Grey (https://vigrey.com) and is licensed under a BSD 2-Clause License. Read LICENSE.txt for more license text. Console-based time management program diff --git a/setup.py b/setup.py index 39e31e6..beadc4d 100644 --- a/setup.py +++ b/setup.py @@ -4,17 +4,17 @@ from distutils.core import setup if sys.version_info < (3, 0, 0): print('White Rabbit requires Python 3') -version = '1.0.3.1 -mainscript = 'white-rabbit' +version = '1.0.3.2' +mainscript = 'whiterabbit' setup( name='White Rabbit', description='Console-based time management program', - author='Vi Grey (http://pariahvi.com)', - author_email='development@pariahvi.com', + author='Vi Grey (https://vigrey.com)', + author_email='vi@vigrey.com', license='BSD', version=version, - url='https://github.com/PariahVi/WhiteRabbit', + url='https://github.com/PawnTakesQueen/whiterabbit', scripts=[mainscript] platforms='No particular restrictions', classifiers=[ diff --git a/white-rabbit b/whiterabbit similarity index 82% rename from white-rabbit rename to whiterabbit index e529699..aac0d30 100644 --- a/white-rabbit +++ b/whiterabbit @@ -1,5 +1,31 @@ #!/usr/bin/env python3 +# Copyright (C) 2013-2016, Vi Grey +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. + + import datetime import math import sys