From d9041ab52af77ef2458cdbcdcf8a216ecd1f2c89 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 29 Nov 2015 23:00:18 +0530 Subject: [PATCH] 1. Switch to GNU GPL v2 license. 2. Modify setup.py and license as an organization --- LICENSE | 4 ++-- morse_talk/decoding.py | 2 +- morse_talk/encoding.py | 6 +++--- setup.py | 12 ++++++------ 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/LICENSE b/LICENSE index 8cdb845..a82716a 100644 --- a/LICENSE +++ b/LICENSE @@ -290,8 +290,8 @@ to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - {description} - Copyright (C) {year} {fullname} + morse-talk, A python library which deals with Morse Code + Copyright (C) 2015 morse-talk developers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/morse_talk/decoding.py b/morse_talk/decoding.py index 67cc66f..53fb5ae 100644 --- a/morse_talk/decoding.py +++ b/morse_talk/decoding.py @@ -5,7 +5,7 @@ # Copyright (C) 2015 by # Himanshu Mishra # All rights reserved. -# GNU license. +# GNU GPL v2 license. from . import encoding diff --git a/morse_talk/encoding.py b/morse_talk/encoding.py index f3e8ba4..b3d4982 100644 --- a/morse_talk/encoding.py +++ b/morse_talk/encoding.py @@ -5,7 +5,7 @@ # Copyright (C) 2015 by # Himanshu Mishra # All rights reserved. -# GNU license. +# GNU GPL v2 license. __all__ = ['encode'] @@ -31,7 +31,7 @@ ('Q', '--.-'), ('R', '.-.'), ('S', '...'), - ('T', '-'), + ('T', '-'), ('U', '..-'), ('V', '...-'), ('W', '.--'), @@ -48,7 +48,7 @@ ('7', '--...'), ('8', '---..'), ('9', '----.'), - (' ', ' '), + (' ', ' '), (',', '--..--'), ('.', '.-.-.-'), ('?', '..--..'), diff --git a/setup.py b/setup.py index 989fe1f..9e4e603 100644 --- a/setup.py +++ b/setup.py @@ -4,17 +4,17 @@ setup( name='morse-talk', version='0.2', - author='Himanshu Mishra', + author='morse-talk developers', author_email='himanshu2014iit@gmail.com', description='An aide to Morse Code', - url='https://github.com/orkohunter/morse-talk', - download_url='https://github.com/orkohunter/morse-talk/tarball/v0.1', - license='MIT', - classifiers=[ + url='https://github.com/morse-talk/morse-talk', + download_url='https://github.com/morse-talk/morse-talk/archive/master.zip', + license='MIT', + classifiers=[ 'Development Status :: 4 - Beta', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', - ], + ], keywords='morse code talk', packages=[ 'morse_talk'