Skip to content

Commit

Permalink
1. Switch to GNU GPL v2 license.
Browse files Browse the repository at this point in the history
2. Modify setup.py and license as an organization
  • Loading branch information
OrkoHunter committed Nov 29, 2015
1 parent 2811393 commit d9041ab
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions LICENSE
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion morse_talk/decoding.py
Expand Up @@ -5,7 +5,7 @@
# Copyright (C) 2015 by
# Himanshu Mishra <himanshu2014iit@gmail.com>
# All rights reserved.
# GNU license.
# GNU GPL v2 license.

from . import encoding

Expand Down
6 changes: 3 additions & 3 deletions morse_talk/encoding.py
Expand Up @@ -5,7 +5,7 @@
# Copyright (C) 2015 by
# Himanshu Mishra <himanshu2014iit@gmail.com>
# All rights reserved.
# GNU license.
# GNU GPL v2 license.

__all__ = ['encode']

Expand All @@ -31,7 +31,7 @@
('Q', '--.-'),
('R', '.-.'),
('S', '...'),
('T', '-'),
('T', '-'),
('U', '..-'),
('V', '...-'),
('W', '.--'),
Expand All @@ -48,7 +48,7 @@
('7', '--...'),
('8', '---..'),
('9', '----.'),
(' ', ' '),
(' ', ' '),
(',', '--..--'),
('.', '.-.-.-'),
('?', '..--..'),
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Expand Up @@ -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'
Expand Down

0 comments on commit d9041ab

Please sign in to comment.