Commit: 82cb2e26c25766830e39f15e58c16a8cdcb6d179 Parent: 0165455b415c3463ffb7e5094a2ea7a328ef17d5 Author: Vi Grey Date: 2016-06-10 08:15 UTC Summary: Updated credits and LICENSE file LICENSE | 24 ++++++++++++++++++++++++ LICENSE.txt | 25 ------------------------- README.md | 2 +- rcube.py | 4 ++-- setup.py | 61 +++++++++++++++++++++++++++++++------------------------------ 5 files changed, 58 insertions(+), 58 deletions(-) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0baf6a2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +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. diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index be2ce17..0000000 --- a/LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -Copyright (c) 2013-2014 by PariahVi. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * 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. - * The name(s) of the copyright holder(s) may not be used to endorse or - promote products derived from this software without specific prior - written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) "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 THE COPYRIGHT HOLDER(S) 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. diff --git a/README.md b/README.md index 6006ef1..5be2bc0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ datecalc ======== -rcube is created by Vi Grey (http://pariahvi.com) and is licensed under a BSD 2-Clause License. Read LICENSE.txt for more license text. +rcube is created by Vi Grey (https://vigrey.com) and is licensed under a BSD 2-Clause License. Read LICENSE for more license text. Python module to solve Rubik's Cubes diff --git a/rcube.py b/rcube.py index 98e575b..2476ba8 100644 --- a/rcube.py +++ b/rcube.py @@ -1,5 +1,5 @@ -__version__ = '1.0.3.1' -__author__ = 'Vi Grey (http://pariahvi.com)' +__version__ = '1.0.3.2' +__author__ = 'Vi Grey (https://vigrey.com)' def get_centres(mem): diff --git a/setup.py b/setup.py index 320af15..aef6dd7 100644 --- a/setup.py +++ b/setup.py @@ -5,33 +5,34 @@ import rcube version = rcube.__version__ author = rcube.__author__ -setup(name='rcube', - description='Python module to solve Rubik\'s Cubes', - license='BSD', - version=version, - author=author, - author_email="development@pariahvi.com", - maintainer=author, - maintainer_email='development@pariahvi.com', - url='http://github.com/PariahVi/rcube', - py_modules=["rcube"], - platforms='No particular restrictions', - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', - 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 2.4', - 'Programming Language :: Python :: 2.5', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.0', - 'Programming Language :: Python :: 3.1', - 'Programming Language :: Python :: 3.2', - 'Programming Language :: Python :: 3.3', - 'Operating System :: OS Independent', - 'Topic :: Software Development :: Libraries :: Python Modules' - ] - ) +setup( + name='rcube', + description='Python module to solve Rubik\'s Cubes', + license='BSD', + version=version, + author=author, + author_email="vi@vigrey.com", + maintainer=author, + maintainer_email='vi@vigrey.com', + url='https://github.com/PawnTakesQueen/rcube', + py_modules=["rcube"], + platforms='No particular restrictions', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 2.4', + 'Programming Language :: Python :: 2.5', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.0', + 'Programming Language :: Python :: 3.1', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Operating System :: OS Independent', + 'Topic :: Software Development :: Libraries :: Python Modules' + ] +)